diff options
author | Nick Clifton <nickc@redhat.com> | 2008-04-25 16:02:43 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2008-04-25 16:02:43 +0000 |
commit | fc2db3b82bf0731973ceb21b63921644ae537412 (patch) | |
tree | a41da89818b85da14e1253b8f9b379d139d42b18 | |
parent | 436675d3af53e8d46fd065d7e12451a7a123761e (diff) | |
download | gdb-fc2db3b82bf0731973ceb21b63921644ae537412.zip gdb-fc2db3b82bf0731973ceb21b63921644ae537412.tar.gz gdb-fc2db3b82bf0731973ceb21b63921644ae537412.tar.bz2 |
* reloc16.c (bfd_coff_reloc16_get_value): Add support for
undefined weak symbols.
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/reloc16.c | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index b5eb09d..d652d97 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2008-04-25 Jay Foad <jay.foad@gmail.com> + + * reloc16.c (bfd_coff_reloc16_get_value): Add support for + undefined weak symbols. + 2008-04-25 Nick Clifton <nickc@redhat.com> * po/vi.po: Updated Vietnamese translation. diff --git a/bfd/reloc16.c b/bfd/reloc16.c index 4e3107f..b4087cb 100644 --- a/bfd/reloc16.c +++ b/bfd/reloc16.c @@ -76,6 +76,10 @@ bfd_coff_reloc16_get_value (reloc, link_info, input_section) else if (h != (struct bfd_link_hash_entry *) NULL && h->type == bfd_link_hash_common) value = h->u.c.size; + else if (h != (struct bfd_link_hash_entry *) NULL + && h->type == bfd_link_hash_undefweak) + /* This is a GNU extension. */ + value = 0; else { if (!((*link_info->callbacks->undefined_symbol) |