aboutsummaryrefslogtreecommitdiff
path: root/softfloat/s_roundPackToF32.c
diff options
context:
space:
mode:
Diffstat (limited to 'softfloat/s_roundPackToF32.c')
-rwxr-xr-xsoftfloat/s_roundPackToF32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/softfloat/s_roundPackToF32.c b/softfloat/s_roundPackToF32.c
index 11764f1..578ae43 100755
--- a/softfloat/s_roundPackToF32.c
+++ b/softfloat/s_roundPackToF32.c
@@ -53,7 +53,7 @@ float32_t
goto uiZ;
}
}
- if ( roundBits ) softfloat_exceptionFlags |= softfloat_flag_inexact;
+ if ( roundBits ) softfloat_raiseFlags( softfloat_flag_inexact );
sig = ( sig + roundIncrement )>>7;
sig &= ~ ( ! ( roundBits ^ 0x40 ) & roundNearestEven );
uiZ = packToF32UI( sign, sig ? exp : 0, sig );