diff options
author | Lukas Larsson <[email protected]> | 2011-11-28 15:59:27 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-11-28 15:59:27 +0100 |
commit | 21366c331baeaafc675bb0383ed63993ff587f5b (patch) | |
tree | 463d12b0d6cc5a7fd2756a987ca64d6deb3d6480 /erts | |
parent | bc09f6a6eda75c4e1df708cb523ffc76340c066d (diff) | |
parent | 7a73f9f4cfd6e29194acd6ba938a261628ce046a (diff) | |
download | otp-21366c331baeaafc675bb0383ed63993ff587f5b.tar.gz otp-21366c331baeaafc675bb0383ed63993ff587f5b.tar.bz2 otp-21366c331baeaafc675bb0383ed63993ff587f5b.zip |
Merge branch 'lukas/erts/large_float_cmp/OTP-9497'
* lukas/erts/large_float_cmp/OTP-9497:
Use CMP_TMP_HEAD_SIZE for C-stack
Diffstat (limited to 'erts')
-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 e4ad7dcb24..8d4073f40f 100644 --- a/erts/emulator/beam/utils.c +++ b/erts/emulator/beam/utils.c @@ -2647,7 +2647,7 @@ tailrecur_ne: FloatDef f1, f2; Eterm big; #if HEAP_ON_C_STACK - Eterm big_buf[32]; /* If HEAP_ON_C_STACK */ + Eterm big_buf[CMP_TMP_HEAP_SIZE]; /* If HEAP_ON_C_STACK */ #else Eterm *big_buf = erts_get_scheduler_data()->cmp_tmp_heap; #endif |