[llvm] r195340 - [PM] Fix typo and trailing space.

Chandler Carruth chandlerc at gmail.com
Thu Nov 21 03:04:53 PST 2013


Author: chandlerc
Date: Thu Nov 21 05:04:53 2013
New Revision: 195340

URL: http://llvm.org/viewvc/llvm-project?rev=195340&view=rev
Log:
[PM] Fix typo and trailing space.

Modified:
    llvm/trunk/include/llvm/IR/PassManager.h

Modified: llvm/trunk/include/llvm/IR/PassManager.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/PassManager.h?rev=195340&r1=195339&r2=195340&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/PassManager.h (original)
+++ llvm/trunk/include/llvm/IR/PassManager.h Thu Nov 21 05:04:53 2013
@@ -210,7 +210,7 @@ struct AnalysisResultModel : AnalysisRes
     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;





More information about the llvm-commits mailing list