From: Kazu Hirata Date: Sun, 14 Nov 2004 12:55:15 +0000 (+0000) Subject: c-common.c (walk_stmt_tree): Remove. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c1dc94c40a609cea5b695ebb43e5a02dc70aed27;p=gcc.git c-common.c (walk_stmt_tree): Remove. * c-common.c (walk_stmt_tree): Remove. * c-common.h: Remove the corresponding prototype. From-SVN: r90619 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 32f9fc90f86..d1150c42817 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 * calls.c (precompute_register_parameters): Force all PARALLELs diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index 4bab5b3aa5b..4a0ead7b34e 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -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. */ diff --git a/gcc/rtl.h b/gcc/rtl.h index 2ff874bd7a3..f2b84c092ca 100644 --- 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);