diff options
author | Geoffrey Keating <geoffk@apple.com> | 2006-03-08 01:26:21 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2006-03-08 01:26:21 +0000 |
commit | cd55445430325f280073813c1130334cce2af96d (patch) | |
tree | ee91f7a306ea7c3dc3182806428c8d19d099fcfa /gcc/varasm.c | |
parent | fa03273115fe6132ec96c31c306c806977c8fa21 (diff) | |
download | gcc-cd55445430325f280073813c1130334cce2af96d.zip gcc-cd55445430325f280073813c1130334cce2af96d.tar.gz gcc-cd55445430325f280073813c1130334cce2af96d.tar.bz2 |
* varasm.c (assemble_end_function): Say that 'fnname' is unused.
From-SVN: r111836
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index 2e109d9..e6249a5 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -1440,7 +1440,7 @@ assemble_start_function (tree decl, const char *fnname) function. DECL describes the function. NAME is the function's name. */ void -assemble_end_function (tree decl, const char *fnname) +assemble_end_function (tree decl, const char *fnname ATTRIBUTE_UNUSED) { #ifdef ASM_DECLARE_FUNCTION_SIZE /* We could have switched section in the middle of the function. */ |