diff options
author | Chris Lattner <sabre@nondot.org> | 2007-04-23 20:34:46 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-04-23 20:34:46 +0000 |
commit | 73f3fd775f7484bc2de080a494a08f019483547f (patch) | |
tree | b173a1976941a94b29696a9e639ac7e0eba04b5e /include/llvm/Bitcode/LLVMBitCodes.h | |
parent | 56c42ef3e43f8eb75c435e781d0ac8251c7588a1 (diff) |
Fix a bug in bitstream writer handling abbrevs, add value symtab
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36373 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Bitcode/LLVMBitCodes.h')
-rw-r--r-- | include/llvm/Bitcode/LLVMBitCodes.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/llvm/Bitcode/LLVMBitCodes.h b/include/llvm/Bitcode/LLVMBitCodes.h index bdabc2e77e..bf59893153 100644 --- a/include/llvm/Bitcode/LLVMBitCodes.h +++ b/include/llvm/Bitcode/LLVMBitCodes.h @@ -33,7 +33,7 @@ namespace bitc { GLOBALCONSTANTS_BLOCK_ID = 3, FUNCTION_BLOCK_ID = 4, TYPE_SYMTAB_BLOCK_ID = 5, - GLOBAL_SYMTAB_BLOCK_ID = 6 + VALUE_SYMTAB_BLOCK_ID = 6 }; @@ -81,6 +81,11 @@ namespace bitc { TST_ENTRY_CODE = 1 // TST_ENTRY: [typeid, namelen, namechar x N] }; + // The value symbol table only has one code (VST_ENTRY_CODE). + enum ValueSymtabCodes { + VST_ENTRY_CODE = 1 // VST_ENTRY: [valid, namelen, namechar x N] + }; + } // End bitc namespace } // End llvm namespace |