[llvm] r195757 - [PM] Fix a stale comment after my last refactoring spoted by Joey in
Chandler Carruth
chandlerc at gmail.com
Tue Nov 26 04:00:58 PST 2013
Author: chandlerc
Date: Tue Nov 26 06:00:58 2013
New Revision: 195757
URL: http://llvm.org/viewvc/llvm-project?rev=195757&view=rev
Log:
[PM] Fix a stale comment after my last refactoring spoted by Joey in
review!
Modified:
llvm/trunk/include/llvm/IR/PassManager.h
Modified: llvm/trunk/include/llvm/IR/PassManager.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/PassManager.h?rev=195757&r1=195756&r2=195757&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/PassManager.h (original)
+++ llvm/trunk/include/llvm/IR/PassManager.h Tue Nov 26 06:00:58 2013
@@ -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);
}
More information about the llvm-commits
mailing list