about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-01-02 21:39:53 -0800
committerKartik K. Agaram <vc@akkartik.com>2022-01-02 21:39:53 -0800
commit74360f20be06246c6cd686b306a2d648b477c614 (patch)
treec1d00bdb516ccf93fffd23af19d83b60560c2ab3 /src
parent2d0bb4438cda0e225034e65e0f5963bcbc9b3fe5 (diff)
downloadteliva-74360f20be06246c6cd686b306a2d648b477c614.tar.gz
.
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;