Add new block number

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10281 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-12-01 07:08:06 +00:00
parent 8d1dbd2134
commit 7f5dbcc9ea

View File

@ -37,6 +37,10 @@ public:
// Can also have ConstantPool block
// Can also have SymbolTable block
BasicBlock = 0x31, // May contain many basic blocks
// InstructionList - The instructions in the body of a function. This
// superceeds the old BasicBlock node.
InstructionList = 0x32,
};
};