diff options
author | Richard Henderson <rth@redhat.com> | 2001-03-27 22:53:49 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2001-03-27 22:53:49 -0800 |
commit | 2f2ee4bba2ea908f7676672935a81f8df590feb3 (patch) | |
tree | 82fb9d73f2a184f90e2c610d158312fb1faaa878 /gcc/sibcall.c | |
parent | ad73b558320545ee96736ae3f3373c48d3622504 (diff) | |
download | gcc-2f2ee4bba2ea908f7676672935a81f8df590feb3.zip gcc-2f2ee4bba2ea908f7676672935a81f8df590feb3.tar.gz gcc-2f2ee4bba2ea908f7676672935a81f8df590feb3.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: r40910
Diffstat (limited to 'gcc/sibcall.c')
-rw-r--r-- | gcc/sibcall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/sibcall.c b/gcc/sibcall.c index e00e8b7..13f9c1f 100644 --- a/gcc/sibcall.c +++ b/gcc/sibcall.c @@ -514,7 +514,7 @@ optimize_sibling_and_tail_recursive_calls () /* We need cfg information to determine which blocks are succeeded only by the epilogue. */ find_basic_blocks (insns, max_reg_num (), 0); - cleanup_cfg (insns); + cleanup_cfg (); /* If there are no basic blocks, then there is nothing to do. */ if (n_basic_blocks == 0) |