From 2e09ee33f0420c4e4f063c8dff27afa017c0b687 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Tue, 15 Feb 2005 07:18:23 +0000 Subject: 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 --- gcc/cfgbuild.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'gcc/cfgbuild.c') 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; -- cgit v1.1