When IBM long double is used, the .gnu_attribute 4 is set to 1 | (1 *
4). IEEE long double sets the same .gnu_attribute to 1 | (3 * 4).
* elf32-ppc.c (_bfd_elf_ppc_merge_fp_attributes): Fix the order
of arguments when warning about different long double types.
+2018-05-04 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
+
+ * elf32-ppc.c (_bfd_elf_ppc_merge_fp_attributes): Fix the order
+ of arguments when warning about different long double types.
+
2018-05-03 Simon Atanasyan <simon@atanasyan.com>
* elf32-mips.c: (elf32_mips_fixup_symbol): New function.
_bfd_error_handler
/* xgettext:c-format */
(_("warning: %pB uses IBM long double, "
- "%pB uses IEEE long double"), ibfd, obfd);
+ "%pB uses IEEE long double"), obfd, ibfd);
else if (out_fp == 3 * 4 && in_fp == 1 * 4)
_bfd_error_handler
/* xgettext:c-format */
(_("warning: %pB uses IBM long double, "
- "%pB uses IEEE long double"), obfd, ibfd);
+ "%pB uses IEEE long double"), ibfd, obfd);
}
}