From 6c9d443a21062ad2d2c03c0f482976d29e6f285c Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Mon, 10 Jun 2024 11:49:08 +0300 Subject: [PATCH] Update IR IR commit: 5be6dd81f19f85bc06085617e7231f8699d7f9b0 --- ext/opcache/jit/ir/ir_emit.c | 2 +- ext/opcache/jit/ir/ir_ra.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/opcache/jit/ir/ir_emit.c b/ext/opcache/jit/ir/ir_emit.c index 334767b4c05..ea39830da08 100644 --- a/ext/opcache/jit/ir/ir_emit.c +++ b/ext/opcache/jit/ir/ir_emit.c @@ -41,7 +41,7 @@ #define DASM_M_FREE(ctx, p, sz) ir_mem_free(p) -#if IR_DEBUG +#ifdef IR_DEBUG # define DASM_CHECKS #endif diff --git a/ext/opcache/jit/ir/ir_ra.c b/ext/opcache/jit/ir/ir_ra.c index 0608b53d6f6..5c1eee0f34b 100644 --- a/ext/opcache/jit/ir/ir_ra.c +++ b/ext/opcache/jit/ir/ir_ra.c @@ -2771,7 +2771,7 @@ static void ir_merge_to_unhandled(ir_live_interval **unhandled, ir_live_interval ival = ival->next; } } -#if IR_DEBUG +#ifdef IR_DEBUG ival = *unhandled; pos = 0;