aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-10-14 01:49:34 +0000
committerChris Lattner <sabre@nondot.org>2004-10-14 01:49:34 +0000
commit1c765b0037c0e08baba40eeb30cc563b5a2fa667 (patch)
tree648ee1bf1157d9f4bcc42bce4ddbfe8e7a39eaa1 /lib/Bytecode
parentf9d7178ba893b5d64c619ab64094fe03704387b4 (diff)
Fit to 80 cols
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16964 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode')
-rw-r--r--lib/Bytecode/Reader/Reader.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/lib/Bytecode/Reader/Reader.h b/lib/Bytecode/Reader/Reader.h
index 80dbea986d..ed8c3e1a61 100644
--- a/lib/Bytecode/Reader/Reader.h
+++ b/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