Fixed compiler option -DHARDSTACKTESTS to commit 5aa36e8

This commit is contained in:
Roberto Ierusalimschy 2020-10-19 15:43:59 -03:00
parent 52c8679760
commit f07de22576

View File

@ -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)