diff options
Diffstat (limited to 'bfd/elf32-arc.c')
-rw-r--r-- | bfd/elf32-arc.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/bfd/elf32-arc.c b/bfd/elf32-arc.c index b726dab..9fb83b5 100644 --- a/bfd/elf32-arc.c +++ b/bfd/elf32-arc.c @@ -613,7 +613,7 @@ arc_elf_merge_private_bfd_data (bfd *ibfd, bfd *obfd) else if (in_flags != out_flags) { /* Warn if different flags. */ - (*_bfd_error_handler) + _bfd_error_handler (_("%s: uses different e_flags (0x%lx) fields than " "previous modules (0x%lx)"), bfd_get_filename (ibfd), (long)in_flags, (long)out_flags); @@ -674,13 +674,13 @@ arc_elf_object_p (bfd * abfd) { if (e_machine == EM_ARC) { - (*_bfd_error_handler) + _bfd_error_handler (_("Error: The ARC4 architecture is no longer supported.\n")); return FALSE; } else { - (*_bfd_error_handler) + _bfd_error_handler (_("Warning: unset or old architecture flags. \n" " Use default machine.\n")); } @@ -807,7 +807,7 @@ arc_special_overflow_checks (const struct arc_relocation_data reloc_data, if (((relocation >> 16) & 0xffff) != NPS_CMEM_HIGH_VALUE) { if (reloc_data.reloc_addend == 0) - (*_bfd_error_handler) + _bfd_error_handler (_("%B(%A+0x%lx): CMEM relocation to `%s' is invalid, " "16 MSB should be 0x%04x (value is 0x%lx)"), reloc_data.input_section->owner, @@ -817,7 +817,7 @@ arc_special_overflow_checks (const struct arc_relocation_data reloc_data, NPS_CMEM_HIGH_VALUE, (relocation)); else - (*_bfd_error_handler) + _bfd_error_handler (_("%B(%A+0x%lx): CMEM relocation to `%s+0x%lx' is invalid, " "16 MSB should be 0x%04x (value is 0x%lx)"), reloc_data.input_section->owner, @@ -1493,8 +1493,8 @@ elf_arc_relocate_section (bfd * output_bfd, if (is_reloc_SDA_relative (howto) && (reloc_data.sdata_begin_symbol_vma_set == FALSE)) { - (*_bfd_error_handler) - ("Error: Linker symbol __SDATA_BEGIN__ not found"); + _bfd_error_handler + ("Error: Linker symbol __SDATA_BEGIN__ not found"); bfd_set_error (bfd_error_bad_value); return FALSE; } @@ -1506,7 +1506,7 @@ elf_arc_relocate_section (bfd * output_bfd, if ((is_reloc_for_GOT (howto) || is_reloc_for_PLT (howto)) && reloc_data.sym_section == NULL) { - (*_bfd_error_handler) + _bfd_error_handler (_("GOT and PLT relocations cannot be fixed with a non dynamic linker.")); bfd_set_error (bfd_error_bad_value); return FALSE; @@ -1727,7 +1727,7 @@ elf_arc_check_relocs (bfd * abfd, else /* bfd_elf_sym_name (abfd, symtab_hdr, isym, NULL); */ name = "UNKNOWN"; - (*_bfd_error_handler) + _bfd_error_handler (_("\ %B: relocation %s against `%s' can not be used when making a shared object; recompile with -fPIC"), abfd, |