From: Nybblista <170842536+nybblista@users.noreply.github.com> Date: Fri, 2 May 2025 12:52:48 +0000 (+0300) Subject: gh-133279: Assert with HAS_TARGET in the codegen_addop_j function (#133280) X-Git-Tag: v3.14.0b1~124 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=20f8ed595d176d951a09eba045cd69ca62981b18;p=thirdparty%2FPython%2Fcpython.git gh-133279: Assert with HAS_TARGET in the codegen_addop_j function (#133280) --- diff --git a/Python/codegen.c b/Python/codegen.c index c7662538408f..683601103ec9 100644 --- a/Python/codegen.c +++ b/Python/codegen.c @@ -399,7 +399,7 @@ codegen_addop_j(instr_sequence *seq, location loc, int opcode, jump_target_label target) { assert(IS_JUMP_TARGET_LABEL(target)); - assert(OPCODE_HAS_JUMP(opcode) || IS_BLOCK_PUSH_OPCODE(opcode)); + assert(HAS_TARGET(opcode)); assert(!IS_ASSEMBLER_OPCODE(opcode)); return _PyInstructionSequence_Addop(seq, opcode, target.id, loc); }