From 9b0eb852c7548eb0e10285711879f6c0c6518a40 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 1 Dec 2003 07:08:06 +0000 Subject: [PATCH] Add new block number llvm-svn: 10281 --- llvm/include/llvm/Bytecode/Format.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/llvm/include/llvm/Bytecode/Format.h b/llvm/include/llvm/Bytecode/Format.h index 417c743bec50..466865e32db7 100644 --- a/llvm/include/llvm/Bytecode/Format.h +++ b/llvm/include/llvm/Bytecode/Format.h @@ -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, }; };