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-ecoff.c | |
parent | 3703bab932d537a9a7136e0d4cf1985bc2249259 (diff) | |
download | binutils-4cae74aaa293398e6e3b8519de184a058f5b62c4.zip binutils-4cae74aaa293398e6e3b8519de184a058f5b62c4.tar.gz binutils-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-ecoff.c')
-rw-r--r-- | gas/config/obj-ecoff.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gas/config/obj-ecoff.c b/gas/config/obj-ecoff.c index 5bee7ac..ad9f250 100644 --- a/gas/config/obj-ecoff.c +++ b/gas/config/obj-ecoff.c @@ -314,5 +314,6 @@ const struct format_ops ecoff_format_ops = ecoff_pop_insert, ecoff_set_ext, ecoff_read_begin_hook, - ecoff_symbol_new_hook + ecoff_symbol_new_hook, + ecoff_symbol_clone_hook }; |