diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2015-01-13 00:36:47 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2015-01-13 00:36:47 +0000 |
commit | 2e7522e9ce26c163117e1e557885fe288549bf45 (patch) | |
tree | 2f4d6a449a9dc1a121170c9eab61713798a165fc /llvm/lib/IR/PassManager.cpp | |
parent | 2cc792b1d11f73fb7845e67eae2633644adbaec2 (diff) | |
download | bcm5719-llvm-2e7522e9ce26c163117e1e557885fe288549bf45.tar.gz bcm5719-llvm-2e7522e9ce26c163117e1e557885fe288549bf45.zip |
[PM] Re-clang-format much of this code as the code has changed some and
so has clang-format. Notably, this fixes a bunch of formatting in the
CGSCC pass manager side of things that has been improved in clang-format
recently.
llvm-svn: 225743
Diffstat (limited to 'llvm/lib/IR/PassManager.cpp')
-rw-r--r-- | llvm/lib/IR/PassManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/IR/PassManager.cpp b/llvm/lib/IR/PassManager.cpp index 907baeabeea..74154cc2f2a 100644 --- a/llvm/lib/IR/PassManager.cpp +++ b/llvm/lib/IR/PassManager.cpp @@ -107,8 +107,8 @@ PreservedAnalyses ModuleAnalysisManager::invalidateImpl(Module &M, // of the analysis manager is required for this invalidation event. if (I->second->invalidate(M, PA)) { if (DebugPM) - dbgs() << "Invalidating module analysis: " - << lookupPass(PassID).name() << "\n"; + dbgs() << "Invalidating module analysis: " << lookupPass(PassID).name() + << "\n"; ModuleAnalysisResults.erase(I); } |