Use different op labels for bitwise logical operations and boolean logical

operations in BURG input trees.

llvm-svn: 1189
This commit is contained in:
Vikram S. Adve 2001-11-08 04:51:39 +00:00
parent 70dd1d4ee4
commit e316915197
1 changed files with 5 additions and 0 deletions

View File

@ -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