OSDN Git Service

PR tree-optimize/22348
[pf3gnuchains/gcc-fork.git] / gcc / tree-iterator.h
index 9008b1b..930e443 100644 (file)
@@ -16,8 +16,8 @@ GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with GCC; see the file COPYING.  If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.  */
+the Free Software Foundation, 51 Franklin Street, Fifth Floor,
+Boston, MA 02110-1301, USA.  */
 
 
 /* This file is dependent upon the implementation of tree's. It provides an
@@ -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
@@ -117,4 +117,7 @@ void tsi_delink (tree_stmt_iterator *);
 tree tsi_split_statement_list_after (const tree_stmt_iterator *);
 tree tsi_split_statement_list_before (tree_stmt_iterator *);
 
+void append_to_statement_list (tree, tree *);
+void append_to_statement_list_force (tree, tree *);
+
 #endif /* GCC_TREE_ITERATOR_H  */