summaryrefslogtreecommitdiff
path: root/gcc/function.h
diff options
context:
space:
mode:
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2004-04-28 20:40:55 +0000
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2004-04-28 20:40:55 +0000
commitb69eb0ff67570b746f9448ced2df74c778d904e3 (patch)
treed5b0b3986f7580e9e8e84df766ad4bfe9caaa82e /gcc/function.h
parent50ef8532a34bcbd2cfdafef300ec16a2301d9777 (diff)
downloadgcc-b69eb0ff67570b746f9448ced2df74c778d904e3.tar.gz
* 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 git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@81260 138bc75d-0d04-0410-961f-82ee72b054a4
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 2c3a847cb58..7e34633d848 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 */