diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-11-14 12:55:15 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-11-14 12:55:15 +0000 |
commit | c1dc94c40a609cea5b695ebb43e5a02dc70aed27 (patch) | |
tree | 7b827bcc76c3c667a06dfc2fe952ddf5fdfd0b6d /gcc/emit-rtl.c | |
parent | 29eb4ac9ad2c2429469e965192c9021a0f250781 (diff) | |
download | gcc-c1dc94c40a609cea5b695ebb43e5a02dc70aed27.zip gcc-c1dc94c40a609cea5b695ebb43e5a02dc70aed27.tar.gz gcc-c1dc94c40a609cea5b695ebb43e5a02dc70aed27.tar.bz2 |
c-common.c (walk_stmt_tree): Remove.
* c-common.c (walk_stmt_tree): Remove.
* c-common.h: Remove the corresponding prototype.
From-SVN: r90619
Diffstat (limited to 'gcc/emit-rtl.c')
-rw-r--r-- | gcc/emit-rtl.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index 4bab5b3..4a0ead7 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. */ |