Commit 3cb341c
committed
InPlaceInterpreter64.asm: use sp as first comparand in the loop VMTraps poll
ARM64 cannot encode sp as Rm in SUBS (only as Rn), so
'bpbeq mem, sp, label' lowers to 'subs xzr, <scratch>, sp' which the
assembler rejects. Swap to the logically equivalent 'bpaeq sp, mem, label'
('subs xzr, sp, <scratch>; b.hs'), matching the existing 'bpa sp, mem'
pattern used elsewhere for stack-limit checks.1 parent 972b37c commit 3cb341c
1 file changed
Lines changed: 3 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
274 | 274 | | |
275 | 275 | | |
276 | 276 | | |
277 | | - | |
278 | | - | |
| 277 | + | |
| 278 | + | |
| 279 | + | |
279 | 280 | | |
280 | 281 | | |
281 | 282 | | |
| |||
0 commit comments