aboutsummaryrefslogtreecommitdiff
path: root/gcc/flow.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2001-05-12 13:59:52 -0700
committerRichard Henderson <rth@gcc.gnu.org>2001-05-12 13:59:52 -0700
commit81922eb2be8e22dc94d940b7bca8b4acec0899a6 (patch)
treeff0988b23c838f35e5aaeb40cf3d2bd76f3c0179 /gcc/flow.c
parentf5910ed97c5e18a3c7d766c33d06ba7e9ac46162 (diff)
downloadgcc-81922eb2be8e22dc94d940b7bca8b4acec0899a6.zip
gcc-81922eb2be8e22dc94d940b7bca8b4acec0899a6.tar.gz
gcc-81922eb2be8e22dc94d940b7bca8b4acec0899a6.tar.bz2
flow.c (cleanup_cfg): Take no argument.
* flow.c (cleanup_cfg): Take no argument. * output.h, sibcall.c, toplev.c: Update all calls. From-SVN: r42016
Diffstat (limited to 'gcc/flow.c')
-rw-r--r--gcc/flow.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/flow.c b/gcc/flow.c
index 271246a..9a704ea 100644
--- a/gcc/flow.c
+++ b/gcc/flow.c
@@ -930,12 +930,11 @@ find_basic_blocks_1 (f)
/* Tidy the CFG by deleting unreachable code and whatnot. */
void
-cleanup_cfg (f)
- rtx f;
+cleanup_cfg ()
{
delete_unreachable_blocks ();
move_stray_eh_region_notes ();
- record_active_eh_regions (f);
+ record_active_eh_regions (get_insns ());
try_merge_blocks ();
mark_critical_edges ();