diff options
author | Björn-Egil Dahlberg <[email protected]> | 2015-05-06 15:17:18 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2015-05-06 15:17:18 +0200 |
commit | 889dbf81def0986e4569841d64a7f3882808ee07 (patch) | |
tree | 686df2eaa37515d315a89372d0915e8afcaa43e0 /erts/emulator/beam/global.h | |
parent | dcffa010ef304c4dbb2e830103b7ca87fb7b62b0 (diff) | |
download | otp-889dbf81def0986e4569841d64a7f3882808ee07.tar.gz otp-889dbf81def0986e4569841d64a7f3882808ee07.tar.bz2 otp-889dbf81def0986e4569841d64a7f3882808ee07.zip |
erts: Don't let the compiler optimize pos. zero fix
Diffstat (limited to 'erts/emulator/beam/global.h')
-rw-r--r-- | erts/emulator/beam/global.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/erts/emulator/beam/global.h b/erts/emulator/beam/global.h index 40b043d1cc..54fba9274f 100644 --- a/erts/emulator/beam/global.h +++ b/erts/emulator/beam/global.h @@ -867,6 +867,9 @@ void print_process_info(int, void *, Process*); void info(int, void *); void loaded(int, void *); +/* erl_arith.c */ +double erts_get_positive_zero_float(void); + /* config.c */ __decl_noreturn void __noreturn erl_exit(int n, char*, ...); |