You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When peephole optimization runs, it can end up deleting instructions. If StLoc instructions are deleted, the locals that they used to refer to may no longer have references in the code, but we may still retain the original slots for those unused locals.
We should do a pass over the generated code (after peephole optimization), and if any local does not have a corresponding (one or more) StLoc instruction, then the local should be eliminated.
The text was updated successfully, but these errors were encountered:
🐛 Bug
When peephole optimization runs, it can end up deleting instructions. If
StLoc
instructions are deleted, the locals that they used to refer to may no longer have references in the code, but we may still retain the original slots for those unused locals.We should do a pass over the generated code (after peephole optimization), and if any local does not have a corresponding (one or more)
StLoc
instruction, then the local should be eliminated.The text was updated successfully, but these errors were encountered: