c-common.c (walk_stmt_tree): Remove.
authorKazu Hirata <kazu@cs.umass.edu>
Sun, 14 Nov 2004 12:55:15 +0000 (12:55 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Sun, 14 Nov 2004 12:55:15 +0000 (12:55 +0000)
* c-common.c (walk_stmt_tree): Remove.
* c-common.h: Remove the corresponding prototype.

From-SVN: r90619

gcc/ChangeLog
gcc/emit-rtl.c
gcc/rtl.h

index 32f9fc90f86056f9eda7f54010401942c6a09716..d1150c428170240d73541b4fd9d3d88174a90297 100644 (file)
@@ -3,6 +3,9 @@
        * c-common.c (walk_stmt_tree): Remove.
        * c-common.h: Remove the corresponding prototype.
 
+       * emit-rtl.c (push_to_full_sequence): Remove.
+       * rtl.h: Remove the corresponding prototype.
+
 2004-11-13  Richard Henderson  <rth@redhat.com>
 
        * calls.c (precompute_register_parameters): Force all PARALLELs
index 4bab5b3aa5beaea0af2241f1a45ae46535ada0bf..4a0ead7b34eef135c57f7690617db217f79017f8 100644 (file)
@@ -4820,18 +4820,6 @@ push_to_sequence (rtx first)
   last_insn = last;
 }
 
-/* Set up the insn chain from a chain stort in FIRST to LAST.  */
-
-void
-push_to_full_sequence (rtx first, rtx last)
-{
-  start_sequence ();
-  first_insn = first;
-  last_insn = last;
-  /* We really should have the end of the insn chain here.  */
-  gcc_assert (!last || !NEXT_INSN (last));
-}
-
 /* Set up the outer-level insn chain
    as the current sequence, saving the previously current one.  */
 
index 2ff874bd7a3e4ebfd27a4dc05997065bed088707..f2b84c092ca564dcc17332cd890d3736c2e0e151 100644 (file)
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -1408,7 +1408,6 @@ extern rtx get_last_nonnote_insn (void);
 extern void start_sequence (void);
 extern void push_to_sequence (rtx);
 extern void end_sequence (void);
-extern void push_to_full_sequence (rtx, rtx);
 extern rtx immed_double_const (HOST_WIDE_INT, HOST_WIDE_INT,
                               enum machine_mode);