Skip to content

Commit 894a759

Browse files
committed
Update IR
IR commit: 091907f4a49648e8428f797442fb757d1cb737e9 Fixed oss-fuzz #63557
1 parent 1068a5f commit 894a759

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ext/opcache/jit/ir/ir_x86.dasc

+3-3
Original file line numberDiff line numberDiff line change
@@ -3185,12 +3185,12 @@ static void ir_emit_mem_op_int(ir_ctx *ctx, ir_ref def, ir_insn *insn)
31853185

31863186
if (op_insn->op == IR_ADD) {
31873187
| ASM_MEM_OP inc, type, [Ra(reg)+offset]
3188-
} else if (insn->op == IR_SUB) {
3188+
} else if (op_insn->op == IR_SUB) {
31893189
| ASM_MEM_OP dec, type, [Ra(reg)+offset]
3190-
} else if (insn->op == IR_NOT) {
3190+
} else if (op_insn->op == IR_NOT) {
31913191
| ASM_MEM_OP not, type, [Ra(reg)+offset]
31923192
} else {
3193-
IR_ASSERT(insn->op == IR_NEG);
3193+
IR_ASSERT(op_insn->op == IR_NEG);
31943194
| ASM_MEM_OP neg, type, [Ra(reg)+offset]
31953195
}
31963196
}

0 commit comments

Comments
 (0)