From: Chandler Carruth Date: Tue, 26 Nov 2013 12:00:58 +0000 (+0000) Subject: [PM] Fix a stale comment after my last refactoring spoted by Joey in X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=7a4609666525ff9cbf18419575e24b02e2cda65c;p=oota-llvm.git [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 --- 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); }