[llvm-commits] CVS: llvm/lib/Bytecode/Reader/Reader.h

Chris Lattner lattner at cs.uiuc.edu
Wed Oct 13 18:49:44 PDT 2004



Changes in directory llvm/lib/Bytecode/Reader:

Reader.h updated: 1.13 -> 1.14
---
Log message:

Fit to 80 cols


---
Diffs of the changes:  (+6 -7)

Index: llvm/lib/Bytecode/Reader/Reader.h
diff -u llvm/lib/Bytecode/Reader/Reader.h:1.13 llvm/lib/Bytecode/Reader/Reader.h:1.14
--- llvm/lib/Bytecode/Reader/Reader.h:1.13	Sat Aug 21 15:50:49 2004
+++ llvm/lib/Bytecode/Reader/Reader.h	Wed Oct 13 20:49:34 2004
@@ -348,17 +348,16 @@
   /// @brief The basic blocks we've parsed, while parsing a function.
   std::vector<BasicBlock*> ParsedBasicBlocks;
 
-  /// This maintains a mapping between <Type, Slot #>'s and
-  /// forward references to constants.  Such values may be referenced before they
-  /// are defined, and if so, the temporary object that they represent is held
-  /// here.
-  /// @brief Temporary place for forward references to constants.
+  /// This maintains a mapping between <Type, Slot #>'s and forward references
+  /// to constants.  Such values may be referenced before they are defined, and
+  /// if so, the temporary object that they represent is held here.  @brief
+  /// Temporary place for forward references to constants.
   ConstantRefsType ConstantFwdRefs;
 
   /// Constant values are read in after global variables.  Because of this, we
   /// must defer setting the initializers on global variables until after module
-  /// level constants have been read.  In the mean time, this list keeps track of
-  /// what we must do.
+  /// level constants have been read.  In the mean time, this list keeps track
+  /// of what we must do.
   GlobalInitsList GlobalInits;
 
   // For lazy reading-in of functions, we need to save away several pieces of






More information about the llvm-commits mailing list