summaryrefslogtreecommitdiff
path: root/gas/config/obj-ecoff.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-ecoff.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-ecoff.c')
-rw-r--r--gas/config/obj-ecoff.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gas/config/obj-ecoff.c b/gas/config/obj-ecoff.c
index ad9f2502cf..a3e5308da6 100644
--- a/gas/config/obj-ecoff.c
+++ b/gas/config/obj-ecoff.c
@@ -1,6 +1,6 @@
/* ECOFF object file format.
Copyright 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002,
- 2005, 2007, 2009 Free Software Foundation, Inc.
+ 2005, 2007, 2009, 2010 Free Software Foundation, Inc.
Contributed by Cygnus Support.
This file was put together by Ian Lance Taylor <ian@cygnus.com>.
@@ -315,5 +315,6 @@ const struct format_ops ecoff_format_ops =
ecoff_set_ext,
ecoff_read_begin_hook,
ecoff_symbol_new_hook,
- ecoff_symbol_clone_hook
+ ecoff_symbol_clone_hook,
+ 0 /* adjust_symtab. */
};