diff options
author | Alan Modra <amodra@gmail.com> | 2010-10-25 12:38:42 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2010-10-25 12:38:42 +0000 |
commit | 645ea3ea629261e7e66127db1438f64019fd5d08 (patch) | |
tree | 7805566153531ef804b2f6d5e08add91284025c8 /gas/config/obj-elf.c | |
parent | 7898a2b16e1bae99bcbf2315c8d6fd3332d7b74d (diff) | |
download | gdb-645ea3ea629261e7e66127db1438f64019fd5d08.zip gdb-645ea3ea629261e7e66127db1438f64019fd5d08.tar.gz gdb-645ea3ea629261e7e66127db1438f64019fd5d08.tar.bz2 |
* 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.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gas/config/obj-elf.c b/gas/config/obj-elf.c index 9f73616..79f8033 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 }; |