diff options
author | Sverker Eriksson <[email protected]> | 2011-11-15 12:27:29 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2011-11-17 14:16:16 +0100 |
commit | c0b6c30a98c154a1ea190dd930b53dc4f155e67b (patch) | |
tree | 10d482fc47d6b9be331c6c0fcf4951b26adc0d22 /erts/emulator/hipe/hipe_primops.h | |
parent | 30f85a8d2f81665626e5a94d10ff9b0ea507caac (diff) | |
download | otp-c0b6c30a98c154a1ea190dd930b53dc4f155e67b.tar.gz otp-c0b6c30a98c154a1ea190dd930b53dc4f155e67b.tar.bz2 otp-c0b6c30a98c154a1ea190dd930b53dc4f155e67b.zip |
hipe,erts: Allow hipe without floating point exceptions
Diffstat (limited to 'erts/emulator/hipe/hipe_primops.h')
-rw-r--r-- | erts/emulator/hipe/hipe_primops.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/erts/emulator/hipe/hipe_primops.h b/erts/emulator/hipe/hipe_primops.h index 94113ffcd8..38509c105b 100644 --- a/erts/emulator/hipe/hipe_primops.h +++ b/erts/emulator/hipe/hipe_primops.h @@ -77,6 +77,10 @@ PRIMOP_LIST(am_nonclosure_address, &nbif_nonclosure_address) PRIMOP_LIST(am_conv_big_to_float, &nbif_conv_big_to_float) PRIMOP_LIST(am_fclearerror_error, &nbif_fclearerror_error) +#ifdef NO_FPE_SIGNALS +PRIMOP_LIST(am_emulate_fpe, &nbif_emulate_fpe) +#endif + #if defined(__sparc__) #include "hipe_sparc_primops.h" #endif |