Dump the DependentLibsBlockID, its not a block, its just a list inside the
authorReid Spencer <rspencer@reidspencer.com>
Sat, 21 Aug 2004 20:42:28 +0000 (20:42 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Sat, 21 Aug 2004 20:42:28 +0000 (20:42 +0000)
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

include/llvm/Bytecode/Format.h

index 55f8befa3b0e0301eea9d8f5acf7f5a568b5cdc1..5620aa72112546215129b02c6a6f70c7e9485032 100644 (file)
@@ -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
   };
 
 };