diff options
Diffstat (limited to 'softfloat/s_roundPackToI32.c')
-rwxr-xr-x | softfloat/s_roundPackToI32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/softfloat/s_roundPackToI32.c b/softfloat/s_roundPackToI32.c index 1c91497..6f63a3b 100755 --- a/softfloat/s_roundPackToI32.c +++ b/softfloat/s_roundPackToI32.c @@ -37,7 +37,7 @@ int_fast32_t z = uZ.i; if ( z && ( ( z < 0 ) ^ sign ) ) goto invalid; if ( exact && roundBits ) { - softfloat_exceptionFlags |= softfloat_flag_inexact; + softfloat_raiseFlags( softfloat_flag_inexact ); } return z; invalid: |