wrap long line
authorChris Lattner <sabre@nondot.org>
Thu, 4 May 2006 23:35:31 +0000 (23:35 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 4 May 2006 23:35:31 +0000 (23:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28113 91177308-0d34-0410-b5e6-96231b3b80d8

tools/bugpoint/Miscompilation.cpp

index cf4cc7e748cc7bc3ad70a0bb673af1cf0447aea9..0fe14e34aefb412f8faeba196734e32ec879d2b2 100644 (file)
@@ -234,7 +234,8 @@ static void DisambiguateGlobalSymbols(Module *M) {
   Mangler Mang(*M);
   // Agree with the CBE on symbol naming
   Mang.markCharUnacceptable('.');
-  for (Module::global_iterator I = M->global_begin(), E = M->global_end(); I != E; ++I)
+  for (Module::global_iterator I = M->global_begin(), E = M->global_end();
+       I != E; ++I)
     I->setName(Mang.getValueName(I));
   for (Module::iterator  I = M->begin(),  E = M->end();  I != E; ++I)
     I->setName(Mang.getValueName(I));