Implemented register calls
This commit is contained in:
@ -21,11 +21,11 @@ func (a *Assembler) CanSkip(mnemonic Mnemonic, left cpu.Register, right cpu.Regi
|
||||
return false
|
||||
}
|
||||
|
||||
if lastData.Destination == left && lastData.Source == right {
|
||||
if lastData.Destination == right && lastData.Source == left {
|
||||
return true
|
||||
}
|
||||
|
||||
if lastData.Destination == right && lastData.Source == left {
|
||||
if lastData.Destination == left && lastData.Source == right {
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user