aboutsummaryrefslogtreecommitdiff
path: root/gcc/cfgbuild.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-02-15 07:18:23 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-02-15 07:18:23 +0000
commit2e09ee33f0420c4e4f063c8dff27afa017c0b687 (patch)
treecbb3702f34d555dc1c662f48376f4c07265e72fa /gcc/cfgbuild.c
parent6434513e2cbce5145713bb9e39c95c59eda2fe92 (diff)
downloadgcc-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.c6
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;