From 7de23662df0c88d5e6638c06a155170e24de0e9d Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Thu, 23 Jul 2020 12:26:34 +0300 Subject: [PATCH] Fixed 32-bit build --- ext/opcache/jit/zend_jit_x86.dasc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/opcache/jit/zend_jit_x86.dasc b/ext/opcache/jit/zend_jit_x86.dasc index 0a5195aeef..ae0067dc82 100644 --- a/ext/opcache/jit/zend_jit_x86.dasc +++ b/ext/opcache/jit/zend_jit_x86.dasc @@ -358,7 +358,6 @@ static void* dasm_labels[zend_lb_MAX]; | mem_ins prefix [tmp_reg], op2 || } | .else -| (void) tmp_reg; | mem_ins prefix [addr], op2 | .endif |.endmacro @@ -2938,6 +2937,7 @@ static int zend_jit_trace_begin(dasm_State **Dst, uint32_t trace_num, zend_jit_t zend_reg tmp = ZEND_REGSET_FIRST(regset); | MEM_OP2_1_ZTS mov, dword, executor_globals, jit_trace_num, trace_num, Ra(tmp) + (void)tmp; } return 1; -- 2.50.1