diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-28 06:53:49 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-28 06:53:49 +0000 |
commit | 253363ea1e6a217abe6168d463d98f09a1cce839 (patch) | |
tree | 82fb9d73f2a184f90e2c610d158312fb1faaa878 /gcc/sibcall.c | |
parent | 022208375a3750f0b792adcfa8176d7e85e5ef6d (diff) | |
download | gcc-253363ea1e6a217abe6168d463d98f09a1cce839.tar.gz |
* flow.c (cleanup_cfg): Take no argument.
* output.h, sibcall.c, toplev.c: Update all calls.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40910 138bc75d-0d04-0410-961f-82ee72b054a4
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 e00e8b790d6..13f9c1f0069 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) |