aboutsummaryrefslogtreecommitdiff
path: root/include/Support/PostOrderIterator.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/Support/PostOrderIterator.h')
-rw-r--r--include/Support/PostOrderIterator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Support/PostOrderIterator.h b/include/Support/PostOrderIterator.h
index 507f4c2a0b..4c19e7ac36 100644
--- a/include/Support/PostOrderIterator.h
+++ b/include/Support/PostOrderIterator.h
@@ -113,7 +113,7 @@ ipo_iterator<T> ipo_end(T G){
//
// This class should be used like this:
// {
-// ReversePostOrderTraversal<Method*> RPOT(MethodPtr); // Expensive to create
+// ReversePostOrderTraversal<Function*> RPOT(FuncPtr); // Expensive to create
// for (rpo_iterator I = RPOT.begin(); I != RPOT.end(); ++I) {
// ...
// }