diff options
author | Chris Lattner <sabre@nondot.org> | 2006-12-06 04:41:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-12-06 04:41:52 +0000 |
commit | d6d826cdadc4dcaa5babefda85bf08aaa57d8bc5 (patch) | |
tree | 411326446d73f6b7fa815567ca009e37e315cbf6 /lib/VMCore/AsmWriter.cpp | |
parent | cae6053587a0909e222feaeaf211fc2cb6c72ba4 (diff) |
wrap long lines
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32254 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/AsmWriter.cpp')
-rw-r--r-- | lib/VMCore/AsmWriter.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index bf32c733d8..163383934c 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -873,7 +873,8 @@ void AssemblyWriter::printModule(const Module *M) { // Loop over the symbol table, emitting all named constants. printSymbolTable(M->getSymbolTable()); - for (Module::const_global_iterator I = M->global_begin(), E = M->global_end(); I != E; ++I) + for (Module::const_global_iterator I = M->global_begin(), E = M->global_end(); + I != E; ++I) printGlobal(I); Out << "\nimplementation ; Functions:\n"; @@ -1028,7 +1029,8 @@ void AssemblyWriter::printFunction(const Function *F) { // Loop over the arguments, printing them... const FunctionType *FT = F->getFunctionType(); - for(Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I) + for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end(); + I != E; ++I) printArgument(I); // Finish printing arguments... @@ -1504,8 +1506,8 @@ void SlotMachine::processModule() { SC_DEBUG("begin processModule!\n"); // Add all of the global variables to the value table... - for (Module::const_global_iterator I = TheModule->global_begin(), E = TheModule->global_end(); - I != E; ++I) + for (Module::const_global_iterator I = TheModule->global_begin(), + E = TheModule->global_end(); I != E; ++I) createSlot(I); // Add all the functions to the table |