From 7f5dbcc9ea41a6f067495576b59e7e394385c012 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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10281 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Bytecode/Format.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/llvm/Bytecode/Format.h b/include/llvm/Bytecode/Format.h index 417c743bec5..466865e32db 100644 --- a/include/llvm/Bytecode/Format.h +++ b/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, }; }; -- 2.34.1