2002-02-08 Chris Demetriou <cgd@broadcom.com>
* elf32-arm.h: Fix formatting of _("..."). * elf32-d10v.c: Likewise. * elf32-m68k.c: Likewise. * elf32-mips.c: Likewise.
This commit is contained in:
parent
39bbf76177
commit
517662d4e0
5 changed files with 18 additions and 11 deletions
|
@ -1,3 +1,10 @@
|
|||
2002-02-08 Chris Demetriou <cgd@broadcom.com>
|
||||
|
||||
* elf32-arm.h: Fix formatting of _("...").
|
||||
* elf32-d10v.c: Likewise.
|
||||
* elf32-m68k.c: Likewise.
|
||||
* elf32-mips.c: Likewise.
|
||||
|
||||
2002-02-08 Ivan Guzvinec <ivang@opencores.org>
|
||||
|
||||
* coff-or32.c: Fix compile time warning messages.
|
||||
|
|
|
@ -2325,12 +2325,12 @@ ERROR: %s uses FPA instructions, whereas %s uses VFP instructions"),
|
|||
|| (in_flags & EF_ARM_VFP_FLOAT) == 0)
|
||||
{
|
||||
if (in_flags & EF_ARM_SOFT_FLOAT)
|
||||
_bfd_error_handler (_ ("\
|
||||
_bfd_error_handler (_("\
|
||||
ERROR: %s uses software FP, whereas %s uses hardware FP"),
|
||||
bfd_archive_filename (ibfd),
|
||||
bfd_get_filename (obfd));
|
||||
else
|
||||
_bfd_error_handler (_ ("\
|
||||
_bfd_error_handler (_("\
|
||||
ERROR: %s uses hardware FP, whereas %s uses software FP"),
|
||||
bfd_archive_filename (ibfd),
|
||||
bfd_get_filename (obfd));
|
||||
|
|
|
@ -479,19 +479,19 @@ elf32_d10v_relocate_section (output_bfd, info, input_bfd, input_section,
|
|||
break;
|
||||
|
||||
case bfd_reloc_outofrange:
|
||||
msg = _ ("internal error: out of range error");
|
||||
msg = _("internal error: out of range error");
|
||||
goto common_error;
|
||||
|
||||
case bfd_reloc_notsupported:
|
||||
msg = _ ("internal error: unsupported relocation error");
|
||||
msg = _("internal error: unsupported relocation error");
|
||||
goto common_error;
|
||||
|
||||
case bfd_reloc_dangerous:
|
||||
msg = _ ("internal error: dangerous error");
|
||||
msg = _("internal error: dangerous error");
|
||||
goto common_error;
|
||||
|
||||
default:
|
||||
msg = _ ("internal error: unknown error");
|
||||
msg = _("internal error: unknown error");
|
||||
/* fall through */
|
||||
|
||||
common_error:
|
||||
|
|
|
@ -407,10 +407,10 @@ elf32_m68k_print_private_bfd_data (abfd, ptr)
|
|||
/* Ignore init flag - it may not be set, despite the flags field containing valid data. */
|
||||
|
||||
/* xgettext:c-format */
|
||||
fprintf (file, _ ("private flags = %lx:"), elf_elfheader (abfd)->e_flags);
|
||||
fprintf (file, _("private flags = %lx:"), elf_elfheader (abfd)->e_flags);
|
||||
|
||||
if (elf_elfheader (abfd)->e_flags & EF_CPU32)
|
||||
fprintf (file, _ (" [cpu32]"));
|
||||
fprintf (file, _(" [cpu32]"));
|
||||
|
||||
fputc ('\n', file);
|
||||
|
||||
|
|
|
@ -3280,11 +3280,11 @@ _bfd_mips_elf_print_private_bfd_data (abfd, ptr)
|
|||
else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_4)
|
||||
fprintf (file, _(" [mips4]"));
|
||||
else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_5)
|
||||
fprintf (file, _ (" [mips5]"));
|
||||
fprintf (file, _(" [mips5]"));
|
||||
else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_32)
|
||||
fprintf (file, _ (" [mips32]"));
|
||||
fprintf (file, _(" [mips32]"));
|
||||
else if ((elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH) == E_MIPS_ARCH_64)
|
||||
fprintf (file, _ (" [mips64]"));
|
||||
fprintf (file, _(" [mips64]"));
|
||||
else
|
||||
fprintf (file, _(" [unknown ISA]"));
|
||||
|
||||
|
|
Loading…
Reference in a new issue