Skip to content

Commit 3a97e8f

Browse files
committed
Simplify check
1 parent 8a896ef commit 3a97e8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/zend_jit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2719,7 +2719,7 @@ static int zend_jit(const zend_op_array *op_array, zend_ssa *ssa, const zend_op
27192719
/* If a simple hook is called, exit to the VM. */
27202720
ir_ref if_hook_enter = ir_IF(jit_CMP_IP(jit, IR_EQ, opline + 1));
27212721
ir_IF_FALSE(if_hook_enter);
2722-
if (GCC_GLOBAL_REGS || zend_jit_vm_kind == ZEND_VM_KIND_HYBRID) {
2722+
if (GCC_GLOBAL_REGS) {
27232723
ir_TAILCALL(IR_VOID, ir_LOAD_A(jit_IP(jit)));
27242724
} else {
27252725
ir_RETURN(ir_CONST_I32(1)); /* ZEND_VM_ENTER */

0 commit comments

Comments
 (0)