[llvm-commits] CVS: llvm/include/llvm/Bytecode/Format.h

Reid Spencer reid at x10sys.com
Sat Aug 21 13:42:39 PDT 2004



Changes in directory llvm/include/llvm/Bytecode:

Format.h updated: 1.10 -> 1.11
---
Log message:

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.


---
Diffs of the changes:  (+2 -3)

Index: llvm/include/llvm/Bytecode/Format.h
diff -u llvm/include/llvm/Bytecode/Format.h:1.10 llvm/include/llvm/Bytecode/Format.h:1.11
--- llvm/include/llvm/Bytecode/Format.h:1.10	Sun Jul 25 12:50:00 2004
+++ llvm/include/llvm/Bytecode/Format.h	Sat Aug 21 15:42:28 2004
@@ -88,9 +88,8 @@
     // 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
   };
 
 };






More information about the llvm-commits mailing list