softfloat: decrease MIN_EXP to cover full float range

floats are not necessarily normalized, so a normalized softfloat needs
MIN_EXP lowered by 23 to cover that range.

Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
(cherry picked from commit 2d6f46d801)
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
This commit is contained in:
Andreas Cadhalpun 2016-11-25 00:26:51 +01:00
parent e70caba384
commit 5d1502d4b6
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
#include "avassert.h"
#include "softfloat_tables.h"
#define MIN_EXP -126
#define MIN_EXP -149
#define MAX_EXP 126
#define ONE_BITS 29