diff options
author | Vikram S. Adve <vadve@cs.uiuc.edu> | 2001-11-08 04:51:39 +0000 |
---|---|---|
committer | Vikram S. Adve <vadve@cs.uiuc.edu> | 2001-11-08 04:51:39 +0000 |
commit | df2ee6cff2d13abcc46e1670d0867b9b10e60d97 (patch) | |
tree | 3a7203cc7449f1734a890f22d7a1bf99e608746e | |
parent | e8f1e44fd760165bd9ac05c01e08bf5d3b14f979 (diff) |
Use different op labels for bitwise logical operations and boolean logical
operations in BURG input trees.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1189 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/InstrForest.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/InstrForest.h b/include/llvm/CodeGen/InstrForest.h index 113e35e32b..1b9af714b9 100644 --- a/include/llvm/CodeGen/InstrForest.h +++ b/include/llvm/CodeGen/InstrForest.h @@ -51,6 +51,11 @@ const int LabelNodeOp = 100; const int RetValueOp = 100 + Instruction::Ret; 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 SetCCOp = 100 + Instruction::SetEQ; const int AllocaN = 100 + Instruction::Alloca; // 121 |