Skip to content

Commit 44220c5

Browse files
committed
Fixed incorrect stack size calculation (sizeof(zval) == 16)
1 parent 0b79199 commit 44220c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/zend_jit_arm64.dasc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8262,7 +8262,7 @@ static int zend_jit_push_call_frame(dasm_State **Dst, const zend_op *opline, con
82628262
| sub REG2w, REG2w, TMP1w
82638263
}
82648264
| sxtw REG2, REG2w
8265-
| sub FCARG1x, FCARG1x, REG2, lsl #5
8265+
| sub FCARG1x, FCARG1x, REG2, lsl #4
82668266
|1:
82678267
}
82688268

0 commit comments

Comments
 (0)