[PM] While I'm here, fix a few other clang-format issues. Pulls some
[oota-llvm.git] / unittests / IR / PassManagerTest.cpp
index 157c881ea59b8eabea2779b2c80297dda2b7fd35..a2d59d31a40de3ce85851c215bd7d2ee6b7136e5 100644 (file)
@@ -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"; }
 };