about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ldo.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/ldo.c b/src/ldo.c
index ea186d3..fa74f34 100644
--- a/src/ldo.c
+++ b/src/ldo.c
@@ -274,9 +274,6 @@ void record_depth_of_global_function (lua_State *L, CallInfo *ci) {
   int pc = cast(int, ci->savedpc - ci_func(ci)->l.p->code) - 1;
   lua_assert(pc != -1);  // TODO: lua_assert not triggering
   Instruction i = ci_func(ci)->l.p->code[pc];
-//?   endwin();
-//?   printf("AAA: %p %d %d %d\n", L->savedpc, pc, i, GET_OPCODE(i));
-//?   abort();
   if (GET_OPCODE(i) != OP_CALL && GET_OPCODE(i) != OP_TAILCALL &&
       GET_OPCODE(i) != OP_TFORLOOP)
     return;