From d029037b0141d6ad4b6b5f91c131557a581767d8 Mon Sep 17 00:00:00 2001 From: John Alanbrook Date: Wed, 4 Feb 2026 19:23:16 -0600 Subject: [PATCH] fix bytecode error --- source/quickjs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/quickjs.c b/source/quickjs.c index 06ce877e..0a29e14b 100644 --- a/source/quickjs.c +++ b/source/quickjs.c @@ -6775,7 +6775,7 @@ restart: } if (unlikely (JS_IsException (ret_val))) goto exception; if (opcode == OP_tail_call_method) goto done; - for (i = -2; i < call_argc; i++) +// for (i = -2; i < call_argc; i++) sp -= call_argc + 2; *sp++ = ret_val; }