diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-02-15 07:18:23 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-02-15 07:18:23 +0000 |
commit | 2e09ee33f0420c4e4f063c8dff27afa017c0b687 (patch) | |
tree | cbb3702f34d555dc1c662f48376f4c07265e72fa /gcc/basic-block.h | |
parent | 6434513e2cbce5145713bb9e39c95c59eda2fe92 (diff) | |
download | gcc-2e09ee33f0420c4e4f063c8dff27afa017c0b687.zip gcc-2e09ee33f0420c4e4f063c8dff27afa017c0b687.tar.gz gcc-2e09ee33f0420c4e4f063c8dff27afa017c0b687.tar.bz2 |
basic-block.h: Adjust the prototype for find_basic_blocks.
* basic-block.h: Adjust the prototype for find_basic_blocks.
* cfgbuild.c (find_basic_blocks): Remove unused arguments.
* passes.c (rest_of_handle_loop_optimize): Adjust the call to
find_basic_blocks.
From-SVN: r95057
Diffstat (limited to 'gcc/basic-block.h')
-rw-r--r-- | gcc/basic-block.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/basic-block.h b/gcc/basic-block.h index 47cd99d..3382cd7 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -779,7 +779,7 @@ extern void alloc_aux_for_edge (edge, int); extern void alloc_aux_for_edges (int); extern void clear_aux_for_edges (void); extern void free_aux_for_edges (void); -extern void find_basic_blocks (rtx, int, FILE *); +extern void find_basic_blocks (rtx); extern bool cleanup_cfg (int); extern bool delete_unreachable_blocks (void); extern bool merge_seq_blocks (void); |