diff options
author | Chris Lattner <sabre@nondot.org> | 2003-12-01 07:08:06 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-12-01 07:08:06 +0000 |
commit | 7f5dbcc9ea41a6f067495576b59e7e394385c012 (patch) | |
tree | dcd50325bfe7c239576de164f5589b6a897437b1 /include/llvm/Bytecode | |
parent | 8d1dbd2134d2bcd83f63c504c1f8f019c0342f92 (diff) | |
download | external_llvm-7f5dbcc9ea41a6f067495576b59e7e394385c012.zip external_llvm-7f5dbcc9ea41a6f067495576b59e7e394385c012.tar.gz external_llvm-7f5dbcc9ea41a6f067495576b59e7e394385c012.tar.bz2 |
Add new block number
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10281 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Bytecode')
-rw-r--r-- | include/llvm/Bytecode/Format.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/Bytecode/Format.h b/include/llvm/Bytecode/Format.h index 417c743..466865e 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, }; }; |