1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Update IR

IR commit: 091907f4a49648e8428f797442fb757d1cb737e9

Fixed oss-fuzz #63557
This commit is contained in:
Dmitry Stogov
2023-10-25 08:44:01 +03:00
parent 1068a5f758
commit 894a7594aa

View File

@@ -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]
}
}