From 7a4609666525ff9cbf18419575e24b02e2cda65c Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Tue, 26 Nov 2013 12:00:58 +0000 Subject: [PATCH] [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 --- include/llvm/IR/PassManager.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/IR/PassManager.h b/include/llvm/IR/PassManager.h index 2d8f07f45f9..f6d8ece8bbf 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); } -- 2.34.1