diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2020-10-19 15:43:59 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2020-10-19 15:43:59 -0300 |
commit | f07de225762ee0f2d5b411b948b3c6e28e0695d3 (patch) | |
tree | 61978a81a46e99117ca87c6484335186159199b2 /llimits.h | |
parent | 52c86797608f1bf927be5bab1e9b97b7d35bdf2c (diff) | |
download | lua-f07de225762ee0f2d5b411b948b3c6e28e0695d3.tar.gz lua-f07de225762ee0f2d5b411b948b3c6e28e0695d3.tar.bz2 lua-f07de225762ee0f2d5b411b948b3c6e28e0695d3.zip |
Fixed compiler option -DHARDSTACKTESTS to commit 5aa36e8
Diffstat (limited to 'llimits.h')
-rw-r--r-- | llimits.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -355,7 +355,7 @@ typedef l_uint32 Instruction; | |||
355 | #else | 355 | #else |
356 | /* realloc stack keeping its size */ | 356 | /* realloc stack keeping its size */ |
357 | #define condmovestack(L,pre,pos) \ | 357 | #define condmovestack(L,pre,pos) \ |
358 | { int sz_ = (L)->stacksize; pre; luaD_reallocstack((L), sz_, 0); pos; } | 358 | { int sz_ = stacksize(L); pre; luaD_reallocstack((L), sz_, 0); pos; } |
359 | #endif | 359 | #endif |
360 | 360 | ||
361 | #if !defined(HARDMEMTESTS) | 361 | #if !defined(HARDMEMTESTS) |