bfd/
authorRichard Sandiford <rdsandiford@googlemail.com>
Sat, 14 Mar 2009 09:36:11 +0000 (09:36 +0000)
committerRichard Sandiford <rdsandiford@googlemail.com>
Sat, 14 Mar 2009 09:36:11 +0000 (09:36 +0000)
* xcofflink.c (xcoff_build_ldsyms): Give imported descriptors
class XMC_DS rather than XMC_UA.

bfd/ChangeLog
bfd/xcofflink.c

index 79e3cb44c449a6fc08677408d69284dcfca12065..25fce9fea38c31b32ac2d45b1384485b951a455c 100644 (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
index da5944eb818ff89b0918d1f30206db5da2171adf..f02f66862f0ce0755f56b9a98fad0c590e39cd6b 100644 (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.  */