diff options
author | Lukas Larsson <[email protected]> | 2011-07-29 15:47:06 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-10-11 17:19:00 +0200 |
commit | f99fd21debc8274dbdecd595e1666436ec962ccd (patch) | |
tree | cb9919475537219ac6009540cdcea61dd88ce90d /erts/emulator | |
parent | 0ab6d70a34f5e2fbfdeb6235024a1d5e83cab64f (diff) | |
download | otp-f99fd21debc8274dbdecd595e1666436ec962ccd.tar.gz otp-f99fd21debc8274dbdecd595e1666436ec962ccd.tar.bz2 otp-f99fd21debc8274dbdecd595e1666436ec962ccd.zip |
Update size of tmp cmp bignum buffer
This is needed for use on 32 bit with very large floats.
Diffstat (limited to 'erts/emulator')
-rw-r--r-- | erts/emulator/beam/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/utils.c b/erts/emulator/beam/utils.c index 85e8c86d53..5822b2e1d9 100644 --- a/erts/emulator/beam/utils.c +++ b/erts/emulator/beam/utils.c @@ -2642,7 +2642,7 @@ tailrecur_ne: FloatDef f1, f2; Eterm big; #if HEAP_ON_C_STACK - Eterm big_buf[16]; /* If HEAP_ON_C_STACK */ + Eterm big_buf[32]; /* If HEAP_ON_C_STACK */ #else Eterm *big_buf = erts_get_scheduler_data()->cmp_tmp_heap; #endif |