summaryrefslogtreecommitdiff
path: root/gas/config/obj-elf.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2010-10-25 12:38:41 +0000
committerAlan Modra <amodra@bigpond.net.au>2010-10-25 12:38:41 +0000
commit6999c548e9ea9676eb88a0cf966a88739ed9c972 (patch)
tree61afcc37a3eb8615b48f12fe5ec0c72a0d0f0a53 /gas/config/obj-elf.c
parent9d9f4e3df7d5a0999d774672cca50609c56a5095 (diff)
downloadbinutils-redhat-6999c548e9ea9676eb88a0cf966a88739ed9c972.tar.gz
* obj.h (struct format_ops): Add adjust_symtab.
* config/obj-multi.h (obj_adjust_symtab): Define. * config/obj-aout.c (aout_format_ops): Init new field. * config/obj-coff.c (coff_format_ops): Likewise. * config/obj-ecoff.c (ecoff_format_ops): Likewise. * config/obj-elf.c (elf_format_ops): Likewise.
Diffstat (limited to 'gas/config/obj-elf.c')
-rw-r--r--gas/config/obj-elf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gas/config/obj-elf.c b/gas/config/obj-elf.c
index 9f7361648f..79f8033e0f 100644
--- a/gas/config/obj-elf.c
+++ b/gas/config/obj-elf.c
@@ -2446,5 +2446,6 @@ const struct format_ops elf_format_ops =
#endif
elf_obj_read_begin_hook,
elf_obj_symbol_new_hook,
- 0
+ 0,
+ elf_adjust_symtab
};