diff options
author | Roland McGrath <roland@gnu.org> | 2013-10-09 18:16:18 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2013-10-09 18:16:18 +0000 |
commit | 677e5a92b1e998e33fbe216f4cbb52cc88b74bca (patch) | |
tree | 052544aecbf636da907376f0a631c7f97da597d8 /ld/plugin.c | |
parent | 1c1479bf9986448f9f88f4668b47d502cbf455e6 (diff) | |
download | gdb-677e5a92b1e998e33fbe216f4cbb52cc88b74bca.zip gdb-677e5a92b1e998e33fbe216f4cbb52cc88b74bca.tar.gz gdb-677e5a92b1e998e33fbe216f4cbb52cc88b74bca.tar.bz2 |
ld/
* emultempl/elf32.em (id_note_section_size): Use ATTRIBUTE_UNUSED
rather than a dummy assignment for unused parameter.
* plugin.c (get_input_file, release_input_file): Likewise.
Diffstat (limited to 'ld/plugin.c')
-rw-r--r-- | ld/plugin.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/ld/plugin.c b/ld/plugin.c index 23a4a78..0d5339f 100644 --- a/ld/plugin.c +++ b/ld/plugin.c @@ -1,5 +1,5 @@ /* Plugin control for the GNU linker. - Copyright 2010, 2011, 2012 Free Software Foundation, Inc. + Copyright 2010, 2011, 2012, 2013 Free Software Foundation, Inc. This file is part of the GNU Binutils. @@ -429,20 +429,18 @@ add_symbols (void *handle, int nsyms, const struct ld_plugin_symbol *syms) /* Get the input file information with an open (possibly re-opened) file descriptor. */ static enum ld_plugin_status -get_input_file (const void *handle, struct ld_plugin_input_file *file) +get_input_file (const void *handle ATTRIBUTE_UNUSED, + struct ld_plugin_input_file *file ATTRIBUTE_UNUSED) { ASSERT (called_plugin); - handle = handle; - file = file; return LDPS_ERR; } /* Release the input file. */ static enum ld_plugin_status -release_input_file (const void *handle) +release_input_file (const void *handle ATTRIBUTE_UNUSED) { ASSERT (called_plugin); - handle = handle; return LDPS_ERR; } |