summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2013-11-21 11:04:53 +0000
committerChandler Carruth <chandlerc@gmail.com>2013-11-21 11:04:53 +0000
commita5f9e4ed396c28bda4686a4fa6898bc221f493d9 (patch)
tree7363ed8e540bb20bb89d3c273b11cb7932a9b150 /include
parentb05bddb4bae4e693225df4c517d9b368d923f1b3 (diff)
downloadllvm-a5f9e4ed396c28bda4686a4fa6898bc221f493d9.tar.gz
llvm-a5f9e4ed396c28bda4686a4fa6898bc221f493d9.tar.bz2
llvm-a5f9e4ed396c28bda4686a4fa6898bc221f493d9.tar.xz
[PM] Fix typo and trailing space.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195340 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/IR/PassManager.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/IR/PassManager.h b/include/llvm/IR/PassManager.h
index c930f7b925..b86b03e053 100644
--- a/include/llvm/IR/PassManager.h
+++ b/include/llvm/IR/PassManager.h
@@ -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;