OSDN Git Service

* elf32-xtensa.c (xtensa_get_property_section_name): Add missing
authorbwilson <bwilson>
Sat, 14 May 2005 00:26:01 +0000 (00:26 +0000)
committerbwilson <bwilson>
Sat, 14 May 2005 00:26:01 +0000 (00:26 +0000)
periods in linkonce_kind values.

bfd/ChangeLog
bfd/elf32-xtensa.c

index f4b9c69..a1978d1 100644 (file)
@@ -1,3 +1,8 @@
+2005-05-13  Bob Wilson  <bob.wilson@acm.org>
+
+       * elf32-xtensa.c (xtensa_get_property_section_name): Add missing
+       periods in linkonce_kind values.
+
 2005-05-12  H.J. Lu  <hongjiu.lu@intel.com>
 
        * elf32-i386.c (elf_i386_relocate_section): Allow R_386_GOTOFF
index ebfaf64..e4e5cc8 100644 (file)
@@ -9338,9 +9338,9 @@ xtensa_get_property_section_name (asection *sec, const char *base_name)
       char *linkonce_kind = 0;
 
       if (strcmp (base_name, XTENSA_INSN_SEC_NAME) == 0) 
-       linkonce_kind = "x";
+       linkonce_kind = "x.";
       else if (strcmp (base_name, XTENSA_LIT_SEC_NAME) == 0) 
-       linkonce_kind = "p";
+       linkonce_kind = "p.";
       else if (strcmp (base_name, XTENSA_PROP_SEC_NAME) == 0)
        linkonce_kind = "prop.";
       else