aboutsummaryrefslogtreecommitdiff
path: root/softfloat/s_roundPackToF64.c
diff options
context:
space:
mode:
Diffstat (limited to 'softfloat/s_roundPackToF64.c')
-rwxr-xr-xsoftfloat/s_roundPackToF64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/softfloat/s_roundPackToF64.c b/softfloat/s_roundPackToF64.c
index fb0ef1d..47d438d 100755
--- a/softfloat/s_roundPackToF64.c
+++ b/softfloat/s_roundPackToF64.c
@@ -54,7 +54,7 @@ float64_t
goto uiZ;
}
}
- if ( roundBits ) softfloat_exceptionFlags |= softfloat_flag_inexact;
+ if ( roundBits ) softfloat_raiseFlags( softfloat_flag_inexact );
sig = ( sig + roundIncrement )>>10;
sig &= ~ ( ! ( roundBits ^ 0x200 ) & roundNearestEven );
uiZ = packToF64UI( sign, sig ? exp : 0, sig );