PR ld/13273
* elf32-arm.c (elf32_arm_merge_eabi_attributes): Do not warn about identical TAG_PCS_config attributes.
This commit is contained in:
parent
07725569e1
commit
b6009aca9a
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2011-10-24 Eugeniy Meshcheryakov <eugen@debian.org>
|
||||
|
||||
PR ld/13273
|
||||
* elf32-arm.c (elf32_arm_merge_eabi_attributes): Do not warn about
|
||||
identical TAG_PCS_config attributes.
|
||||
|
||||
2011-10-24 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* po/ja.po: Updated Japanese translation.
|
||||
|
|
|
@ -11549,7 +11549,7 @@ elf32_arm_merge_eabi_attributes (bfd *ibfd, bfd *obfd)
|
|||
case Tag_PCS_config:
|
||||
if (out_attr[i].i == 0)
|
||||
out_attr[i].i = in_attr[i].i;
|
||||
else if (in_attr[i].i != 0 && out_attr[i].i != 0)
|
||||
else if (in_attr[i].i != 0 && out_attr[i].i != in_attr[i].i)
|
||||
{
|
||||
/* It's sometimes ok to mix different configs, so this is only
|
||||
a warning. */
|
||||
|
|
Loading…
Reference in a new issue