Skip to content

Commit 91cdec5

Browse files
committed
We don't have to care about x29 and x30
1 parent 59c3c99 commit 91cdec5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ext/opcache/jit/ir

ext/opcache/jit/zend_jit_ir.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
# define ZREG_FP 27 /* IR_REG_X27 */
3636
# define ZREG_IP 28 /* IR_REG_X28 */
3737
# define ZREG_FIRST_FPR 32
38-
# define IR_REGSET_PRESERVED ((1<<19) | (1<<20) | (1<<21) | (1<<22) | (1<<23) | (1<<24) | \
39-
(1<<25) | (1<<26) | (1<<27) | (1<<28) | (1<<29) | (1<<30)) /* all preserved registers */
38+
# define IR_REGSET_PRESERVED ((1<<19) | (1<<20) | (1<<21) | (1<<22) | (1<<23) | \
39+
(1<<24) | (1<<25) | (1<<26) | (1<<27) | (1<<28)) /* all preserved registers */
4040
#else
4141
# error "Unknown IR target"
4242
#endif

0 commit comments

Comments
 (0)