From 227bd369e57269e3840ec6b09d17fd01f651bdaf Mon Sep 17 00:00:00 2001 From: "Vikram S. Adve" Date: Thu, 15 Aug 2002 14:20:45 +0000 Subject: [PATCH] Change opLabel numbers for Not and BNot. Also, these tree nodes are now binary, not unary. llvm-svn: 3344 --- include/llvm/CodeGen/InstrForest.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/llvm/CodeGen/InstrForest.h b/include/llvm/CodeGen/InstrForest.h index f1871a622da..1cdaa684be3 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;