| 2208 |
{ |
{ |
| 2209 |
_bfd_error_handler |
_bfd_error_handler |
| 2210 |
/* xgettext: c-format */ |
/* xgettext: c-format */ |
| 2211 |
(_("ERROR: %B is compiled for APCS-%d, whereas %B is compiled for APCS-%d"), |
(_("error: %B is compiled for APCS-%d, whereas %B is compiled for APCS-%d"), |
| 2212 |
ibfd, obfd, |
ibfd, obfd, |
| 2213 |
APCS_26_FLAG (ibfd) ? 26 : 32, |
APCS_26_FLAG (ibfd) ? 26 : 32, |
| 2214 |
APCS_26_FLAG (obfd) ? 26 : 32 |
APCS_26_FLAG (obfd) ? 26 : 32 |
| 2224 |
|
|
| 2225 |
if (APCS_FLOAT_FLAG (ibfd)) |
if (APCS_FLOAT_FLAG (ibfd)) |
| 2226 |
/* xgettext: c-format */ |
/* xgettext: c-format */ |
| 2227 |
msg = _("ERROR: %B passes floats in float registers, whereas %B passes them in integer registers"); |
msg = _("error: %B passes floats in float registers, whereas %B passes them in integer registers"); |
| 2228 |
else |
else |
| 2229 |
/* xgettext: c-format */ |
/* xgettext: c-format */ |
| 2230 |
msg = _("ERROR: %B passes floats in integer registers, whereas %B passes them in float registers"); |
msg = _("error: %B passes floats in integer registers, whereas %B passes them in float registers"); |
| 2231 |
|
|
| 2232 |
_bfd_error_handler (msg, ibfd, obfd); |
_bfd_error_handler (msg, ibfd, obfd); |
| 2233 |
|
|
| 2241 |
|
|
| 2242 |
if (PIC_FLAG (ibfd)) |
if (PIC_FLAG (ibfd)) |
| 2243 |
/* xgettext: c-format */ |
/* xgettext: c-format */ |
| 2244 |
msg = _("ERROR: %B is compiled as position independent code, whereas target %B is absolute position"); |
msg = _("error: %B is compiled as position independent code, whereas target %B is absolute position"); |
| 2245 |
else |
else |
| 2246 |
/* xgettext: c-format */ |
/* xgettext: c-format */ |
| 2247 |
msg = _("ERROR: %B is compiled as absolute position code, whereas target %B is position independent"); |
msg = _("error: %B is compiled as absolute position code, whereas target %B is position independent"); |
| 2248 |
_bfd_error_handler (msg, ibfd, obfd); |
_bfd_error_handler (msg, ibfd, obfd); |
| 2249 |
|
|
| 2250 |
bfd_set_error (bfd_error_wrong_format); |
bfd_set_error (bfd_error_wrong_format); |