Fixed incorrect number of history entries
This commit is contained in:
16
src/asm/CanSkipReturn.go
Normal file
16
src/asm/CanSkipReturn.go
Normal file
@ -0,0 +1,16 @@
|
||||
package asm
|
||||
|
||||
// CanSkipReturn returns true if the return operation can be skipped.
|
||||
func (a *Assembler) CanSkipReturn() bool {
|
||||
if len(a.Instructions) == 0 {
|
||||
return false
|
||||
}
|
||||
|
||||
lastMnemonic := a.Instructions[len(a.Instructions)-1].Mnemonic
|
||||
|
||||
if lastMnemonic == RETURN || lastMnemonic == JUMP {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
Reference in New Issue
Block a user