aboutsummaryrefslogtreecommitdiff
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
commit917d5519695281f3eb4248cf81863ebf121111d8 (patch)
tree5eb8827052c28b8d26db6df95ce695ad4dfc258d
parent85af131d9e76e57244c8704792647f173443ffb6 (diff)
Change opLabel numbers for Not and BNot.
Also, these tree nodes are now binary, not unary. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3344 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/CodeGen/InstrForest.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/InstrForest.h b/include/llvm/CodeGen/InstrForest.h
index f1871a622d..1cdaa684be 100644
--- a/include/llvm/CodeGen/InstrForest.h
+++ b/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;