Skip to content

Commit a4cc205

Browse files
committed
Use zero-extension that can be eliminated
1 parent edb4ee0 commit a4cc205

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ext/opcache/jit/zend_jit_ir.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7996,7 +7996,7 @@ static int zend_jit_push_call_frame(zend_jit_ctx *jit, const zend_op *opline, co
79967996
}
79977997
ref = ir_MUL_U32(ref, ir_CONST_U32(sizeof(zval)));
79987998
if (sizeof(void*) == 8) {
7999-
ref = ir_SEXT_A(ref);
7999+
ref = ir_ZEXT_A(ref);
80008000
}
80018001
ref = ir_SUB_A(used_stack_ref, ref);
80028002

0 commit comments

Comments
 (0)