aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorDiego Novillo <dnovillo@redhat.com>2005-07-04 18:34:14 +0000
committerDiego Novillo <dnovillo@gcc.gnu.org>2005-07-04 14:34:14 -0400
commit00b847e32ee8139e4b654a0a910c9078f0dbc0a8 (patch)
treee6a70153585b13c8604047ca87044cc460430b2c /gcc
parentc6f3fbf13ee495a3b8575ab36e15882effe37a60 (diff)
downloadgcc-00b847e32ee8139e4b654a0a910c9078f0dbc0a8.zip
gcc-00b847e32ee8139e4b654a0a910c9078f0dbc0a8.tar.gz
gcc-00b847e32ee8139e4b654a0a910c9078f0dbc0a8.tar.bz2
tree-iterator.h (TSI_NEW_STMT, [...]): Fix comments.
* tree-iterator.h (TSI_NEW_STMT, TSI_SAME_STMT): Fix comments. From-SVN: r101605
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/tree-iterator.h4
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 0bbe692..c976ab2 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2005-07-04 Diego Novillo <dnovillo@redhat.com>
+
+ * tree-iterator.h (TSI_NEW_STMT, TSI_SAME_STMT): Fix
+ comments.
+
2005-07-04 Daniel Berlin <dberlin@dberlin.org>
Fix PR tree-optimization/22279
diff --git a/gcc/tree-iterator.h b/gcc/tree-iterator.h
index 5f14edc..930e443 100644
--- a/gcc/tree-iterator.h
+++ b/gcc/tree-iterator.h
@@ -95,9 +95,9 @@ tsi_stmt (tree_stmt_iterator i)
enum tsi_iterator_update
{
- TSI_NEW_STMT, /* Leave the iterator at the same statement. */
- TSI_SAME_STMT, /* Only valid when single statement is added, move
+ TSI_NEW_STMT, /* Only valid when single statement is added, move
iterator to it. */
+ TSI_SAME_STMT, /* Leave the iterator at the same statement. */
TSI_CHAIN_START, /* Only valid when chain of statements is added, move
iterator to the first statement in the chain. */
TSI_CHAIN_END, /* Only valid when chain of statements is added, move