aboutsummaryrefslogtreecommitdiff
path: root/gas/config/obj-elf.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2009-11-02 11:49:48 +0000
committerAlan Modra <amodra@gmail.com>2009-11-02 11:49:48 +0000
commit4cae74aaa293398e6e3b8519de184a058f5b62c4 (patch)
treec728975e1c162b5f30549476c7ae9fb1d1f7df0e /gas/config/obj-elf.c
parent3703bab932d537a9a7136e0d4cf1985bc2249259 (diff)
downloadgdb-4cae74aaa293398e6e3b8519de184a058f5b62c4.zip
gdb-4cae74aaa293398e6e3b8519de184a058f5b62c4.tar.gz
gdb-4cae74aaa293398e6e3b8519de184a058f5b62c4.tar.bz2
* ecoff.c (ecoff_symbol_clone_hook): New function.
* ecoff.h (ecoff_symbol_clone_hook): Declare. * obj.h (struct format_ops): Add symbol_clone_hook. * 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. * config/obj-ecoff.h (obj_symbol_clone_hook): Define. * config/obj-multi.h (obj_symbol_clone_hook): Define.
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 dfe7ce3..1cc11ec 100644
--- a/gas/config/obj-elf.c
+++ b/gas/config/obj-elf.c
@@ -2424,5 +2424,6 @@ const struct format_ops elf_format_ops =
0, /* ecoff_set_ext */
#endif
elf_obj_read_begin_hook,
- elf_obj_symbol_new_hook
+ elf_obj_symbol_new_hook,
+ 0
};