Improved separation of concerns
This commit is contained in:
12
src/build/z/isDestructive.go
Normal file
12
src/build/z/isDestructive.go
Normal file
@ -0,0 +1,12 @@
|
||||
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
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user