* xcofflink.c (xcoff_build_ldsyms): Give imported descriptors
	class XMC_DS rather than XMC_UA.
This commit is contained in:
Richard Sandiford 2009-03-14 09:36:11 +00:00
parent b64232cca5
commit 670562e9d1
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-03-14 Richard Sandiford <r.sandiford@uk.ibm.com>
* xcofflink.c (xcoff_build_ldsyms): Give imported descriptors
class XMC_DS rather than XMC_UA.
2009-03-14 Richard Sandiford <r.sandiford@uk.ibm.com>
* bfd-in.h (bfd_xcoff_size_dynamic_sections): Replace the

View File

@ -3128,7 +3128,12 @@ xcoff_build_ldsyms (struct xcoff_link_hash_entry *h, void * p)
}
if ((h->flags & XCOFF_IMPORT) != 0)
h->ldsym->l_ifile = h->ldindx;
{
/* Give imported descriptors class XMC_DS rather than XMC_UA. */
if ((h->flags & XCOFF_DESCRIPTOR) != 0)
h->smclas = XMC_DS;
h->ldsym->l_ifile = h->ldindx;
}
/* The first 3 symbol table indices are reserved to indicate the
data, text and bss sections. */