mirror of
https://github.com/lua/lua
synced 2025-04-01 10:32:57 +03:00
Fixed compiler option -DHARDSTACKTESTS to commit 5aa36e8
This commit is contained in:
parent
52c8679760
commit
f07de22576
@ -355,7 +355,7 @@ typedef l_uint32 Instruction;
|
||||
#else
|
||||
/* realloc stack keeping its size */
|
||||
#define condmovestack(L,pre,pos) \
|
||||
{ int sz_ = (L)->stacksize; pre; luaD_reallocstack((L), sz_, 0); pos; }
|
||||
{ int sz_ = stacksize(L); pre; luaD_reallocstack((L), sz_, 0); pos; }
|
||||
#endif
|
||||
|
||||
#if !defined(HARDMEMTESTS)
|
||||
|
Loading…
x
Reference in New Issue
Block a user