diff options
author | Chris Lattner <sabre@nondot.org> | 2006-05-04 23:35:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-05-04 23:35:31 +0000 |
commit | 67ef9e43049c28c8fe2c9f70d2ad163045ee5876 (patch) | |
tree | a9152385e48bf1d86d4727f6b5a2976e7b265bbf | |
parent | b93b0347d8715e9f2ded1dc56a086f92aeedfb86 (diff) |
wrap long line
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28113 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/bugpoint/Miscompilation.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/bugpoint/Miscompilation.cpp b/tools/bugpoint/Miscompilation.cpp index cf4cc7e748..0fe14e34ae 100644 --- a/tools/bugpoint/Miscompilation.cpp +++ b/tools/bugpoint/Miscompilation.cpp @@ -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)); |