Skip to content

Commit d9dbe75

Browse files
committed
Fixed incorrect extension (ZEXT->SEXT)
1 parent 7872744 commit d9dbe75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/zend_jit_ir.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8105,7 +8105,7 @@ static int zend_jit_push_call_frame(zend_jit_ctx *jit, const zend_op *opline, co
81058105
}
81068106
ref = ir_MUL_U32(ref, ir_CONST_U32(sizeof(zval)));
81078107
if (sizeof(void*) == 8) {
8108-
ref = ir_ZEXT_A(ref);
8108+
ref = ir_SEXT_A(ref);
81098109
}
81108110
ref = ir_SUB_A(used_stack_ref, ref);
81118111

0 commit comments

Comments
 (0)