Skip to content

Commit 0de3ca4

Browse files
committed
Let's try to fix the JIT compiler warning
1 parent fbe3059 commit 0de3ca4

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
@@ -2375,7 +2375,7 @@ static int zend_jit(const zend_op_array *op_array, zend_ssa *ssa, const zend_op
23752375
if (!zend_jit_assign_op(&dasm_state, opline, op_array,
23762376
op1_info, op1_def_info, OP1_RANGE(),
23772377
op2_info, OP2_RANGE(),
2378-
(op1_info & MAY_BE_LONG) && (op2_info && MAY_BE_LONG) && (op1_def_info & MAY_BE_DOUBLE) && zend_may_overflow(opline, op_array, ssa),
2378+
(op1_info & MAY_BE_LONG) && (op2_info & MAY_BE_LONG) && (op1_def_info & MAY_BE_DOUBLE) && zend_may_overflow(opline, op_array, ssa),
23792379
zend_may_throw(opline, ssa_op, op_array, ssa))) {
23802380
goto jit_failure;
23812381
}

0 commit comments

Comments
 (0)