* elf32-xtensa.c (xtensa_get_property_section_name): Add missing

periods in linkonce_kind values.
This commit is contained in:
Bob Wilson 2005-05-14 00:26:06 +00:00
parent 4cc18f0008
commit 7db48a120a
2 changed files with 7 additions and 2 deletions

View 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

View 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