diff options
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 417c743bec..466865e32d 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, }; }; |