diff options
author | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-04 18:34:14 +0000 |
---|---|---|
committer | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-04 18:34:14 +0000 |
commit | 3ecac41d23a26a41b001648b94c9a016d8514e22 (patch) | |
tree | e6a70153585b13c8604047ca87044cc460430b2c /gcc/tree-iterator.h | |
parent | 2645fb2fee873de7c2cba7a529fdee5feb0d7879 (diff) | |
download | gcc-3ecac41d23a26a41b001648b94c9a016d8514e22.tar.gz |
* tree-iterator.h (TSI_NEW_STMT, TSI_SAME_STMT): Fix
comments.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101605 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-iterator.h')
-rw-r--r-- | gcc/tree-iterator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-iterator.h b/gcc/tree-iterator.h index 5f14edc6e73..930e443d8ca 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 |