aboutsummaryrefslogtreecommitdiff
path: root/gcc/function.h
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/function.h
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/function.h')
-rw-r--r--gcc/function.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/function.h b/gcc/function.h
index 2c3a847..7e34633 100644
--- a/gcc/function.h
+++ b/gcc/function.h
@@ -648,4 +648,6 @@ extern const char *current_function_name (void);
/* Called once, at initialization, to initialize function.c. */
extern void init_function_once (void);
+extern void do_warn_unused_parameter (tree);
+
#endif /* GCC_FUNCTION_H */