diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2017-01-05 03:10:26 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2017-01-05 03:10:26 +0000 |
commit | b2f3a81a92c43b9e3ef84e5d64a1db88b982061e (patch) | |
tree | 9daef55e0ee93e893f46d008ef660780d9fee8f5 | |
parent | 564cba9bc3b24c34b488a53cd2debd3d6e43c628 (diff) | |
download | bcm5719-llvm-b2f3a81a92c43b9e3ef84e5d64a1db88b982061e.tar.gz bcm5719-llvm-b2f3a81a92c43b9e3ef84e5d64a1db88b982061e.zip |
[PM] Fix a typo in a comment that Davide spotted in another code review.
llvm-svn: 291066
-rw-r--r-- | llvm/include/llvm/Analysis/CGSCCPassManager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Analysis/CGSCCPassManager.h b/llvm/include/llvm/Analysis/CGSCCPassManager.h index 54ef1a688d3..6fbe532112b 100644 --- a/llvm/include/llvm/Analysis/CGSCCPassManager.h +++ b/llvm/include/llvm/Analysis/CGSCCPassManager.h @@ -128,7 +128,7 @@ extern template class PassManager<LazyCallGraph::SCC, CGSCCAnalysisManager, /// \brief The CGSCC pass manager. /// /// See the documentation for the PassManager template for details. It runs -/// a sequency of SCC passes over each SCC that the manager is run over. This +/// a sequence of SCC passes over each SCC that the manager is run over. This /// typedef serves as a convenient way to refer to this construct. typedef PassManager<LazyCallGraph::SCC, CGSCCAnalysisManager, LazyCallGraph &, CGSCCUpdateResult &> |