summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2020-09-20 01:01:01 +0200
committerLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2020-10-06 18:32:50 +0200
commit735ac5d051fbb2fb2e0d628ae114a4c7e8e6e53b (patch)
treeadca457f04b7bd2715fe7213183b52fad62f39dc
parent7f816fc3cd71494db289aa95f61313e66be2575a (diff)
downloadsparse-735ac5d051fbb2fb2e0d628ae114a4c7e8e6e53b.tar.gz
remove definition of removed OP_{AND,OR}_BOOL
These instructions have been removed years ago, in 2016 but the corresponding opcode defines have been forgotten. So remove them now. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
-rw-r--r--opcode.def2
1 files changed, 0 insertions, 2 deletions
diff --git a/opcode.def b/opcode.def
index 7959efaf..1401d988 100644
--- a/opcode.def
+++ b/opcode.def
@@ -33,8 +33,6 @@ OPCODE(FMUL, BADOP, BADOP, BADOP, 2, OPF_TARGET)
OPCODE(FDIV, BADOP, BADOP, BADOP, 2, OPF_TARGET)
/* Logical */
-OPCODE(AND_BOOL, BADOP, BADOP, BADOP, 2, OPF_TARGET)
-OPCODE(OR_BOOL, BADOP, BADOP, BADOP, 2, OPF_TARGET)
OPCODE(AND, BADOP, BADOP, BADOP, 2, OPF_TARGET)
OPCODE(OR, BADOP, BADOP, BADOP, 2, OPF_TARGET)
OPCODE(XOR, BADOP, BADOP, BADOP, 2, OPF_TARGET)