diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2014-03-10 02:12:14 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2014-03-10 02:12:14 +0000 |
commit | 5ae74a6af2ca4f54fc216334b982862ecc4b8560 (patch) | |
tree | 08c666dfb962469a4edcd3851808ac82f5d52f3a /llvm/unittests/IR/PassManagerTest.cpp | |
parent | 6bc27bf35957b511c26e97d3b872fe7922f69ad0 (diff) | |
download | bcm5719-llvm-5ae74a6af2ca4f54fc216334b982862ecc4b8560.tar.gz bcm5719-llvm-5ae74a6af2ca4f54fc216334b982862ecc4b8560.zip |
[PM] While I'm here, fix a few other clang-format issues. Pulls some
lines under 80-columns, etc.
llvm-svn: 203434
Diffstat (limited to 'llvm/unittests/IR/PassManagerTest.cpp')
-rw-r--r-- | llvm/unittests/IR/PassManagerTest.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/unittests/IR/PassManagerTest.cpp b/llvm/unittests/IR/PassManagerTest.cpp index 157c881ea59..a2d59d31a40 100644 --- a/llvm/unittests/IR/PassManagerTest.cpp +++ b/llvm/unittests/IR/PassManagerTest.cpp @@ -58,7 +58,7 @@ public: int FunctionCount; }; - static void *ID() { return (void * )&PassID; } + static void *ID() { return (void *)&PassID; } TestModuleAnalysis(int &Runs) : Runs(Runs) {} @@ -92,9 +92,7 @@ struct TestModulePass { }; struct TestPreservingModulePass { - PreservedAnalyses run(Module *M) { - return PreservedAnalyses::all(); - } + PreservedAnalyses run(Module *M) { return PreservedAnalyses::all(); } static StringRef name() { return "TestPreservingModulePass"; } }; |