1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Change opLabel numbers for Not and BNot.

Also, these tree nodes are now binary, not unary.

llvm-svn: 3344
This commit is contained in:
Vikram S. Adve 2002-08-15 14:20:45 +00:00
parent 21b0deb4ab
commit 227bd369e5

View File

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