package z import "git.akyoto.dev/cli/q/src/build/asm" func isDestructive(mnemonic asm.Mnemonic) bool { switch mnemonic { case asm.MOVE, asm.ADD, asm.SUB, asm.MUL, asm.DIV: return true default: return false } }