From: Nikita Popov Date: Fri, 29 May 2020 10:58:31 +0000 (+0200) Subject: Fix Windows build X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ec3ee1f1733d0a514e72fa47a9ea3889dac9eacc;p=php Fix Windows build --- diff --git a/ext/opcache/jit/zend_jit_vm_helpers.c b/ext/opcache/jit/zend_jit_vm_helpers.c index db530cf3ef..770251e0fa 100644 --- a/ext/opcache/jit/zend_jit_vm_helpers.c +++ b/ext/opcache/jit/zend_jit_vm_helpers.c @@ -690,7 +690,7 @@ zend_jit_trace_stop ZEND_FASTCALL zend_jit_trace_execute(zend_execute_data *ex, rc = handler(ZEND_OPCODE_HANDLER_ARGS_PASSTHRU); if (rc != 0) { if (rc < 0) { - stop = ZEND_JIT_TRACE_STOP_RETRUN_HALT; + stop = ZEND_JIT_TRACE_STOP_RETURN_HALT; break; } execute_data = EG(current_execute_data);