summaryrefslogtreecommitdiff
path: root/gcc/cfgrtl.c
diff options
context:
space:
mode:
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2003-06-12 18:09:56 +0000
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2003-06-12 18:09:56 +0000
commit5f704f9f7891fdea71b6dab2cb66b722f7f0ae43 (patch)
tree4282dc17f5665681c4154eae36ecce4417aa347b /gcc/cfgrtl.c
parent299a3cdd6dd1c822a002c6721c18849a231f1e82 (diff)
downloadgcc-5f704f9f7891fdea71b6dab2cb66b722f7f0ae43.tar.gz
* basic-block.h (flow_delete_block_noexpunge): Kill.
* cfgrtl.c (flow_delete_block_noexpunge): Merge to rtl_delete_block. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67846 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfgrtl.c')
-rw-r--r--gcc/cfgrtl.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c
index e597cf837f6..7c36c54d0ea 100644
--- a/gcc/cfgrtl.c
+++ b/gcc/cfgrtl.c
@@ -357,8 +357,8 @@ create_basic_block (head, end, after)
/* ??? Preserving all such notes strikes me as wrong. It would be nice
to post-process the stream to remove empty blocks, loops, ranges, etc. */
-void
-flow_delete_block_noexpunge (b)
+static void
+rtl_delete_block (b)
basic_block b;
{
rtx insn, end, tmp;
@@ -412,13 +412,6 @@ flow_delete_block_noexpunge (b)
b->pred = NULL;
b->succ = NULL;
-}
-
-static void
-rtl_delete_block (b)
- basic_block b;
-{
- flow_delete_block_noexpunge (b);
/* Remove the basic block from the array. */
expunge_block (b);