fix IR peephole optimization

This commit is contained in:
Irmen de Jong 2024-04-02 00:28:28 +02:00
parent 641f6c05d8
commit 92c012b55a
1 changed files with 1 additions and 1 deletions

View File

@ -439,7 +439,7 @@ class IRPeepholeOptimizer(private val irprog: IRProgram) {
val prev = indexedInstructions[idx-1].value
if(prev.opcode==Opcode.LOADM) {
// loadm.X rX,something | storem.X rX,something ?? -> get rid of the store.
if(ins.labelSymbol!=null && ins.labelSymbol==prev.labelSymbol) {
if(ins.labelSymbol!=null && ins.labelSymbol==prev.labelSymbol && ins.labelSymbolOffset==prev.labelSymbolOffset) {
changed=true
chunk.instructions.removeAt(idx)
}