summaryrefslogtreecommitdiff
path: root/gcc/cfgbuild.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2005-02-15 07:18:23 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2005-02-15 07:18:23 +0000
commit9c17711b2061e7afa802cfb989d1a345479a9625 (patch)
treecbb3702f34d555dc1c662f48376f4c07265e72fa /gcc/cfgbuild.c
parent2b2046d3b651ef5f6f11e9b80c817b411f00f5d6 (diff)
downloadgcc-9c17711b2061e7afa802cfb989d1a345479a9625.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@95057 138bc75d-0d04-0410-961f-82ee72b054a4
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 7f3e72b9ff5..ac8a941452e 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;