We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47cffdc commit d205f3aCopy full SHA for d205f3a
lvm.c
@@ -1156,8 +1156,10 @@ void luaV_execute (lua_State *L, CallInfo *ci) {
1156
Instruction i; /* instruction being executed */
1157
StkId ra; /* instruction's A register */
1158
vmfetch();
1159
-// low-level line tracing for debugging Lua
1160
-// printf("line: %d\n", luaG_getfuncline(cl->p, pcRel(pc, cl->p)));
+ #if 0
+ /* low-level line tracing for debugging Lua */
1161
+ printf("line: %d\n", luaG_getfuncline(cl->p, pcRel(pc, cl->p)));
1162
+ #endif
1163
lua_assert(base == ci->func + 1);
1164
lua_assert(base <= L->top && L->top < L->stack_last);
1165
/* invalidate top for instructions not expecting it */
0 commit comments