aboutsummaryrefslogtreecommitdiff
path: root/gcc/cgraphunit.c
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2004-04-28 22:40:55 +0200
committerJan Hubicka <hubicka@gcc.gnu.org>2004-04-28 20:40:55 +0000
commit902edd367b9d585a610eabdad8110a188effd707 (patch)
treed5b0b3986f7580e9e8e84df766ad4bfe9caaa82e /gcc/cgraphunit.c
parenta89f5df3d9325c1d5d9ed7f92abd6c61f9df8631 (diff)
downloadgcc-902edd367b9d585a610eabdad8110a188effd707.zip
gcc-902edd367b9d585a610eabdad8110a188effd707.tar.gz
gcc-902edd367b9d585a610eabdad8110a188effd707.tar.bz2
re PR c/15004 ([unit-at-a-time] no warning for unused paramater in static function)
* gcc.dg/unused-6.c: New test. PR c/15004 * function.c (do_warn_unused_parameter): Break out form ... (expand_function_end): ... here; warn only when not using cgraphunit. * function.h (do_warn_unused_parameter): Declare. * cgraphunit.c: Include function.h. (cgraph_finalize_function): Do unused parameter warning. * Makefile.in (cgraphunit.o): Depend on function.h From-SVN: r81260
Diffstat (limited to 'gcc/cgraphunit.c')
-rw-r--r--gcc/cgraphunit.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c
index 7495a75..4bdd41a 100644
--- a/gcc/cgraphunit.c
+++ b/gcc/cgraphunit.c
@@ -183,6 +183,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
#include "fibheap.h"
#include "c-common.h"
#include "intl.h"
+#include "function.h"
#define INSNS_PER_CALL 10
@@ -377,6 +378,10 @@ cgraph_finalize_function (tree decl, bool nested)
early then. */
if (DECL_EXTERNAL (decl))
DECL_STRUCT_FUNCTION (decl) = NULL;
+
+ /* Possibly warn about unused parameters. */
+ if (warn_unused_parameter)
+ do_warn_unused_parameter (decl);
}
/* Walk tree and record all calls. Called via walk_tree. */