summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2013-11-26 12:00:58 +0000
committerChandler Carruth <chandlerc@gmail.com>2013-11-26 12:00:58 +0000
commit7a4609666525ff9cbf18419575e24b02e2cda65c (patch)
tree1e7c0fc271ae0ecc7723609050985288824c4b6d /include
parent9200d12fd52688cb34e4c17240f0549682699d3a (diff)
downloadllvm-7a4609666525ff9cbf18419575e24b02e2cda65c.tar.gz
llvm-7a4609666525ff9cbf18419575e24b02e2cda65c.tar.bz2
llvm-7a4609666525ff9cbf18419575e24b02e2cda65c.tar.xz
[PM] Fix a stale comment after my last refactoring spoted by Joey in
review! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195757 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 2d8f07f45f..f6d8ece8bb 100644
--- a/include/llvm/IR/PassManager.h
+++ b/include/llvm/IR/PassManager.h
@@ -523,8 +523,8 @@ public:
/// \brief Invalidate analyses cached for an IR unit.
///
- /// Walk through all of the analyses pertaining to this module and invalidate
- /// them unless they are preserved by the PreservedAnalyses set.
+ /// Walk through all of the analyses pertaining to this unit of IR and
+ /// invalidate them unless they are preserved by the PreservedAnalyses set.
void invalidate(IRUnitT IR, const PreservedAnalyses &PA) {
derived_this()->invalidateImpl(IR, PA);
}