projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
85af131
)
Change opLabel numbers for Not and BNot.
author
Vikram S. Adve
<vadve@cs.uiuc.edu>
Thu, 15 Aug 2002 14:20:45 +0000
(14:20 +0000)
committer
Vikram S. Adve
<vadve@cs.uiuc.edu>
Thu, 15 Aug 2002 14:20:45 +0000
(14:20 +0000)
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
include/llvm/CodeGen/InstrForest.h
patch
|
blob
|
history
diff --git
a/include/llvm/CodeGen/InstrForest.h
b/include/llvm/CodeGen/InstrForest.h
index f1871a622da05c8b4698dc9bb66a79df0d779fee..1cdaa684be32c91d9921822f4f9742083aaa9261 100644
(file)
--- 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;