diff options
Diffstat (limited to 'libm/fp_private.h')
-rw-r--r-- | libm/fp_private.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libm/fp_private.h b/libm/fp_private.h index c16836a12..505400e33 100644 --- a/libm/fp_private.h +++ b/libm/fp_private.h @@ -56,13 +56,13 @@ //#define Infinity(x) ( x.hex.exponent & ExpMask ) == ExpMask #define dInfinity(x) ( x.hex.high & dExpMask ) == dExpMask -#define sInfinity(x) ( ( x.hexsgl << 1 ) & sExpMask ) == sExpMask +#define sInfinity(x) ( ( x.hexsgl << 1 ) & sExpMask ) == sExpMask //#define Exponent(x) x.hex.exponent & ExpMask #define dExponent(x) x.hex.high & dExpMask #define sExponent(x) ( ( x.hexsgl << 1 ) & sExpMask ) -#define sZero(x) ( x.hexsgl & sSgnMask ) == 0 +#define sZero(x) ( x.hexsgl & sSgnMask ) == 0 //#define Sign(x) ( x.hex.exponent & SgnMask ) == SgnMask /******************************************************************************* |