diff options
author | Alan Modra <amodra@gmail.com> | 2009-11-02 11:49:48 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2009-11-02 11:49:48 +0000 |
commit | 4cae74aaa293398e6e3b8519de184a058f5b62c4 (patch) | |
tree | c728975e1c162b5f30549476c7ae9fb1d1f7df0e /gas/config/obj-elf.c | |
parent | 3703bab932d537a9a7136e0d4cf1985bc2249259 (diff) | |
download | gdb-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.c | 3 |
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 }; |