aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2011-11-28 15:59:27 +0100
committerLukas Larsson <[email protected]>2011-11-28 15:59:27 +0100
commit21366c331baeaafc675bb0383ed63993ff587f5b (patch)
tree463d12b0d6cc5a7fd2756a987ca64d6deb3d6480
parentbc09f6a6eda75c4e1df708cb523ffc76340c066d (diff)
parent7a73f9f4cfd6e29194acd6ba938a261628ce046a (diff)
downloadotp-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
-rw-r--r--erts/emulator/beam/utils.c2
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