diff options
author | Dan Gohman <gohman@apple.com> | 2009-09-01 18:29:01 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-09-01 18:29:01 +0000 |
commit | 96d7ddc073ae2bdbf5e0bda96a5d7d8f7185ecb4 (patch) | |
tree | 3865e253933a6992eb5d8641d984b8faa9c22df9 /include | |
parent | 3e4b1a34d5b499ec5547537b59505158e643305c (diff) | |
download | external_llvm-96d7ddc073ae2bdbf5e0bda96a5d7d8f7185ecb4.zip external_llvm-96d7ddc073ae2bdbf5e0bda96a5d7d8f7185ecb4.tar.gz external_llvm-96d7ddc073ae2bdbf5e0bda96a5d7d8f7185ecb4.tar.bz2 |
Fix a typo in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80697 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Pass.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Pass.h b/include/llvm/Pass.h index a214e4f..f3f71c8 100644 --- a/include/llvm/Pass.h +++ b/include/llvm/Pass.h @@ -191,7 +191,7 @@ public: AnalysisType &getAnalysis() const; // Defined in PassAnalysisSupport.h template<typename AnalysisType> - AnalysisType &getAnalysis(Function &F); // Defined in PassanalysisSupport.h + AnalysisType &getAnalysis(Function &F); // Defined in PassAnalysisSupport.h template<typename AnalysisType> AnalysisType &getAnalysisID(const PassInfo *PI) const; |