diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-01-30 19:37:26 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-01-30 19:37:26 +0000 |
commit | 2574fe5a226e9806cde064b0919c461babc3bf29 (patch) | |
tree | 5bfb90392af54647e4c42a17d50c6db5c84135dc /include | |
parent | d2bb887cd193b8b47fb15fedc7a05ab66997d4c5 (diff) | |
download | external_llvm-2574fe5a226e9806cde064b0919c461babc3bf29.zip external_llvm-2574fe5a226e9806cde064b0919c461babc3bf29.tar.gz external_llvm-2574fe5a226e9806cde064b0919c461babc3bf29.tar.bz2 |
Compaction tables no longer supported, remove its block ID.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33662 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Bytecode/Format.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/include/llvm/Bytecode/Format.h b/include/llvm/Bytecode/Format.h index fc896b8..ab9795d 100644 --- a/include/llvm/Bytecode/Format.h +++ b/include/llvm/Bytecode/Format.h @@ -40,13 +40,7 @@ public: GlobalTypePlaneBlockID = 6, ///< Global type plan identifier InstructionListBlockID = 7, ///< All instructions in a function - /// Blocks with this id are used to define a function local remapping - /// table for the function's values. This allows the indices used within - /// the function to be as small as possible. This often allows the - /// instructions to be encoded more efficiently because VBR takes fewer - /// bytes with smaller values. - /// @brief Value Compaction Table Block - CompactionTableBlockID = 8, + //CompactionTableBlockID = 8, << Placeholder for removed block type TypeSymbolTableBlockID = 9, ///< Value Symbol table identifier // Not a block id, just used to count them |