From 49557e75800c81ca3658a218963aed42bb457129 Mon Sep 17 00:00:00 2001 From: Lil-Ran Date: Tue, 18 Nov 2025 22:59:34 +0800 Subject: [PATCH] fix(pycdc): don't skip 1 instruction right after RETURN_VALUE --- ASTree.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ASTree.cpp b/ASTree.cpp index 8963f07..f0ba9f3 100644 --- a/ASTree.cpp +++ b/ASTree.cpp @@ -1969,7 +1969,9 @@ PycRef BuildFromCode(PycRef code, PycModule* mod) curblock = blocks.top(); curblock->append(prev.cast()); - bc_next(source, mod, opcode, operand, pos); + // BEGIN ONESHOT TEMPORARY PATCH + // bc_next(source, mod, opcode, operand, pos); + // END ONESHOT PATCH } } break;