From 894a7594aaaa04f33fe95284b47be9cad7bf9301 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Wed, 25 Oct 2023 08:44:01 +0300 Subject: [PATCH] Update IR IR commit: 091907f4a49648e8428f797442fb757d1cb737e9 Fixed oss-fuzz #63557 --- ext/opcache/jit/ir/ir_x86.dasc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/opcache/jit/ir/ir_x86.dasc b/ext/opcache/jit/ir/ir_x86.dasc index 07627b59246..7cb4fe36755 100644 --- a/ext/opcache/jit/ir/ir_x86.dasc +++ b/ext/opcache/jit/ir/ir_x86.dasc @@ -3185,12 +3185,12 @@ static void ir_emit_mem_op_int(ir_ctx *ctx, ir_ref def, ir_insn *insn) if (op_insn->op == IR_ADD) { | ASM_MEM_OP inc, type, [Ra(reg)+offset] - } else if (insn->op == IR_SUB) { + } else if (op_insn->op == IR_SUB) { | ASM_MEM_OP dec, type, [Ra(reg)+offset] - } else if (insn->op == IR_NOT) { + } else if (op_insn->op == IR_NOT) { | ASM_MEM_OP not, type, [Ra(reg)+offset] } else { - IR_ASSERT(insn->op == IR_NEG); + IR_ASSERT(op_insn->op == IR_NEG); | ASM_MEM_OP neg, type, [Ra(reg)+offset] } }