aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Bytecode
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-08-21 20:42:28 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-08-21 20:42:28 +0000
commit26642771c84143767ab5a9bc4ef7b707a350e04d (patch)
treee78cd3966f97eb7b13ceee434e2e8e168d985326 /include/llvm/Bytecode
parenta96c4af7f1c75ec9b964fe84d980f01ae5c136c1 (diff)
downloadexternal_llvm-26642771c84143767ab5a9bc4ef7b707a350e04d.zip
external_llvm-26642771c84143767ab5a9bc4ef7b707a350e04d.tar.gz
external_llvm-26642771c84143767ab5a9bc4ef7b707a350e04d.tar.bz2
Dump the DependentLibsBlockID, its not a block, its just a list inside the
globals info block. Add an enumerator for getting the number of enumerators so we can range check in assertions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15980 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Bytecode')
-rw-r--r--include/llvm/Bytecode/Format.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/llvm/Bytecode/Format.h b/include/llvm/Bytecode/Format.h
index 55f8bef..5620aa7 100644
--- a/include/llvm/Bytecode/Format.h
+++ b/include/llvm/Bytecode/Format.h
@@ -88,9 +88,8 @@ public:
// encoded more efficiently.
CompactionTableBlockID = 0x08, ///< 1.3 identifier for compaction tables
- // Dependent Libraries - blocks with this id contain strings of library
- // names, as they might appear on a -l option to the linker.
- DependentLibsBlockID = 0x09, ///< 1.3 identifier for list of dependent libs
+ // Not a block id, just used to count them
+ NumberOfBlockIDs
};
};