diff options
author | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-08-22 03:03:10 +0000 |
---|---|---|
committer | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-08-22 03:03:10 +0000 |
commit | 4afd6c37c7f6d5245e75bd2148ffc2aee959409e (patch) | |
tree | 1f0550cee199be46121cecedfb886486efbc52c6 | |
parent | cab1a52aa261e0eae7a0243732f742bae2c8c587 (diff) |
Just some extra comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3446 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/InstrForest.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/include/llvm/CodeGen/InstrForest.h b/include/llvm/CodeGen/InstrForest.h index 1cdaa684be..79780e0ab8 100644 --- a/include/llvm/CodeGen/InstrForest.h +++ b/include/llvm/CodeGen/InstrForest.h @@ -41,22 +41,22 @@ const int VRegNodeOp = 98; const int ConstantNodeOp= 99; const int LabelNodeOp = 100; -const int RetValueOp = 100 + Instruction::Ret; -const int BrCondOp = 100 + Instruction::Br; +const int RetValueOp = 100 + Instruction::Ret; // 101 +const int BrCondOp = 100 + Instruction::Br; // 102 -const int BAndOp = 100 + Instruction::And; -const int BOrOp = 100 + Instruction::Or; -const int BXorOp = 100 + Instruction::Xor; -const int BNotOp = 200 + Instruction::Xor; -const int NotOp = 300 + Instruction::Xor; +const int BAndOp = 100 + Instruction::And; // 111 +const int BOrOp = 100 + Instruction::Or; // 112 +const int BXorOp = 100 + Instruction::Xor; // 113 +const int BNotOp = 200 + Instruction::Xor; // 213 +const int NotOp = 300 + Instruction::Xor; // 313 -const int SetCCOp = 100 + Instruction::SetEQ; +const int SetCCOp = 100 + Instruction::SetEQ; // 114 -const int AllocaN = 100 + Instruction::Alloca; // 121 -const int LoadIdx = 100 + Instruction::Load; // 122 -const int GetElemPtrIdx= 100 + Instruction::GetElementPtr; // 124 +const int AllocaN = 100 + Instruction::Alloca; // 122 +const int LoadIdx = 100 + Instruction::Load; // 123 +const int GetElemPtrIdx= 100 + Instruction::GetElementPtr; // 125 -const int ToBoolTy = 100 + Instruction::Cast; // 126 +const int ToBoolTy = 100 + Instruction::Cast; // 127 const int ToUByteTy = ToBoolTy + 1; const int ToSByteTy = ToBoolTy + 2; const int ToUShortTy = ToBoolTy + 3; |