Add new block number
authorChris Lattner <sabre@nondot.org>
Mon, 1 Dec 2003 07:08:06 +0000 (07:08 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 1 Dec 2003 07:08:06 +0000 (07:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10281 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Bytecode/Format.h

index 417c743bec50dca0e6a605c29ba5aaa74311a6ca..466865e32db7f34712a36af065b65c8d15a54a1f 100644 (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,
   };
 };