aboutsummaryrefslogtreecommitdiff
path: root/softfloat/specialize.h
diff options
context:
space:
mode:
Diffstat (limited to 'softfloat/specialize.h')
-rwxr-xr-xsoftfloat/specialize.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/softfloat/specialize.h b/softfloat/specialize.h
index 72a9f16..4b0138a 100755
--- a/softfloat/specialize.h
+++ b/softfloat/specialize.h
@@ -68,7 +68,7 @@ bool softfloat_isSigNaNF32UI( uint_fast32_t );
struct commonNaN softfloat_f32UIToCommonNaN( uint_fast32_t );
#if defined INLINE_LEVEL && ( 1 <= INLINE_LEVEL )
INLINE uint_fast32_t softfloat_commonNaNToF32UI( struct commonNaN a )
- { return (uint_fast32_t) a.sign<<31 | 0x7FFFFFFF; }
+ { return defaultNaNF32UI; }
#else
uint_fast32_t softfloat_commonNaNToF32UI( struct commonNaN );
#endif