diff options
author | Chris Lattner <sabre@nondot.org> | 2004-10-14 01:49:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-10-14 01:49:34 +0000 |
commit | 315157df62c9835ef03b149c59c132365a35568e (patch) | |
tree | 4bcfb752aec97c9cab5688704e6ff8486bc347fd /llvm/lib/Bytecode/Reader/Reader.h | |
parent | 3d98008553695c50722824323fa6c77d5070dfc5 (diff) | |
download | bcm5719-llvm-315157df62c9835ef03b149c59c132365a35568e.tar.gz bcm5719-llvm-315157df62c9835ef03b149c59c132365a35568e.zip |
Fit to 80 cols
llvm-svn: 16964
Diffstat (limited to 'llvm/lib/Bytecode/Reader/Reader.h')
-rw-r--r-- | llvm/lib/Bytecode/Reader/Reader.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/llvm/lib/Bytecode/Reader/Reader.h b/llvm/lib/Bytecode/Reader/Reader.h index 80dbea986dd..ed8c3e1a610 100644 --- a/llvm/lib/Bytecode/Reader/Reader.h +++ b/llvm/lib/Bytecode/Reader/Reader.h @@ -348,17 +348,16 @@ private: /// @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 |