summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVikram S. Adve <vadve@cs.uiuc.edu>2002-08-15 14:20:45 +0000
committerVikram S. Adve <vadve@cs.uiuc.edu>2002-08-15 14:20:45 +0000
commit2ba6b60374a884b23d032e3df554a927d178dea9 (patch)
tree9e4396e96b3b4a3736aa2887456fc8eb6c05cc63
parent3db97eb499134cd483e308524f4bd8a3d8143ae6 (diff)
downloadbcm5719-llvm-2ba6b60374a884b23d032e3df554a927d178dea9.tar.gz
bcm5719-llvm-2ba6b60374a884b23d032e3df554a927d178dea9.zip
Change opLabel numbers for Not and BNot.
Also, these tree nodes are now binary, not unary. llvm-svn: 3344
-rw-r--r--llvm/include/llvm/CodeGen/InstrForest.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/include/llvm/CodeGen/InstrForest.h b/llvm/include/llvm/CodeGen/InstrForest.h
index f1871a622da..1cdaa684be3 100644
--- a/llvm/include/llvm/CodeGen/InstrForest.h
+++ b/llvm/include/llvm/CodeGen/InstrForest.h
@@ -47,7 +47,8 @@ const int BrCondOp = 100 + Instruction::Br;
const int BAndOp = 100 + Instruction::And;
const int BOrOp = 100 + Instruction::Or;
const int BXorOp = 100 + Instruction::Xor;
-const int BNotOp = 100 + Instruction::Not;
+const int BNotOp = 200 + Instruction::Xor;
+const int NotOp = 300 + Instruction::Xor;
const int SetCCOp = 100 + Instruction::SetEQ;
OpenPOWER on IntegriCloud