[PM] Fix typo and trailing space.
authorChandler Carruth <chandlerc@gmail.com>
Thu, 21 Nov 2013 11:04:53 +0000 (11:04 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Thu, 21 Nov 2013 11:04:53 +0000 (11:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195340 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/IR/PassManager.h

index c930f7b92524a9398856b26932689d242d7d1065..b86b03e053f155aa113f4abf1dc8491b1b44e443 100644 (file)
@@ -210,7 +210,7 @@ struct AnalysisResultModel : AnalysisResultConcept<IRUnitT> {
     return new AnalysisResultModel(Result);
   }
 
-  /// \brief The model bases invalidation soley on being in the preserved set.
+  /// \brief The model bases invalidation solely on being in the preserved set.
   //
   // FIXME: We should actually use two different concepts for analysis results
   // rather than two different models, and avoid the indirect function call for
@@ -645,7 +645,7 @@ public:
       PreservedAnalyses PassPA = Pass.run(I);
       PA.intersect(llvm_move(PassPA));
     }
-    
+
     // By definition we preserve the proxy.
     PA.preserve<FunctionAnalysisModuleProxy>();
     return PA;