Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mips: fix a bug when scanning the stack
Previously the assembler was reordering this code: jal tinygo_scanstack move $a0, $sp Into this: jal tinygo_scanstack nop move $a0, $sp So it was "helpfully" inserting a branch delay slot, even though this was already being taken care of. Somehow this didn't break, but it does break in the WIP threading branch (#4559) where this bug leads to a crash.
- Loading branch information