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/cfgbuild.c | |
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/cfgbuild.c')
-rw-r--r-- | gcc/cfgbuild.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/cfgbuild.c b/gcc/cfgbuild.c index 7f3e72b..ac8a941 100644 --- a/gcc/cfgbuild.c +++ b/gcc/cfgbuild.c @@ -482,12 +482,10 @@ find_basic_blocks_1 (rtx f) /* Find basic blocks of the current function. - F is the first insn of the function and NREGS the number of register - numbers in use. */ + F is the first insn of the function. */ void -find_basic_blocks (rtx f, int nregs ATTRIBUTE_UNUSED, - FILE *file ATTRIBUTE_UNUSED) +find_basic_blocks (rtx f) { basic_block bb; |