Added more destructive mnemonics
This commit is contained in:
parent
c8824e699a
commit
8862dec3e4
@ -4,7 +4,7 @@ import "git.akyoto.dev/cli/q/src/build/asm"
|
|||||||
|
|
||||||
func isDestructive(mnemonic asm.Mnemonic) bool {
|
func isDestructive(mnemonic asm.Mnemonic) bool {
|
||||||
switch mnemonic {
|
switch mnemonic {
|
||||||
case asm.MOVE, asm.ADD, asm.SUB, asm.MUL, asm.DIV:
|
case asm.MOVE, asm.ADD, asm.SUB, asm.MUL, asm.DIV, asm.MODULO, asm.AND, asm.OR, asm.XOR, asm.SHIFTL, asm.SHIFTRS, asm.NEGATE:
|
||||||
return true
|
return true
|
||||||
default:
|
default:
|
||||||
return false
|
return false
|
||||||
|
Loading…
Reference in New Issue
Block a user