From 6dae4e801f18e99b77c0679cb4ddab0a2e8217ca Mon Sep 17 00:00:00 2001 From: Sahil Jain Date: Mon, 30 Jun 2025 22:24:01 +0530 Subject: [PATCH] Remove COPY opcode --- ASTree.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/ASTree.cpp b/ASTree.cpp index b5b42f7..5f5603a 100644 --- a/ASTree.cpp +++ b/ASTree.cpp @@ -2500,8 +2500,6 @@ PycRef BuildFromCode(PycRef code, PycModule* mod) stack.push(next_tup); } break; - case Pyc::COPY_A: - break; default: fprintf(stderr, "Unsupported opcode: %s (%d)\n", Pyc::OpcodeName(opcode), opcode); cleanBuild = false;