diff options
author | Alan Modra <amodra@gmail.com> | 2018-02-21 13:09:46 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2018-02-26 09:34:15 +1030 |
commit | 38f14ab8fcfa4eab8bab417a5a165b7403ef9b0e (patch) | |
tree | 9dd03091c1cec078dfdd0349309f2b686792dd03 /bfd/elf32-nds32.c | |
parent | 6e05870c978aaa057b5ae0f525a2e9b803047ac8 (diff) | |
download | gdb-38f14ab8fcfa4eab8bab417a5a165b7403ef9b0e.zip gdb-38f14ab8fcfa4eab8bab417a5a165b7403ef9b0e.tar.gz gdb-38f14ab8fcfa4eab8bab417a5a165b7403ef9b0e.tar.bz2 |
assorted target messages
bfd/
* elf-m10300.c, * elf-s390-common.c, * elf32-arc.c, * elf32-cris.c,
* elf32-dlx.c, * elf32-frv.c, * elf32-i370.c, * elf32-lm32.c,
* elf32-m32r.c, * elf32-m68hc1x.c, * elf32-m68k.c,
* elf32-microblaze.c, * elf32-msp430.c, * elf32-nds32.c,
* elf32-nios2.c, * elf32-or1k.c, * elf32-rl78.c, * elf32-rx.c,
* elf32-score.c, * elf32-score7.c, * elf32-sh-symbian.c,
* elf32-sh.c, * elf32-spu.c, * elf32-v850.c, * elf32-xtensa.c,
* elf64-alpha.c, * elf64-ia64-vms.c, * elf64-mmix.c,
* elf64-sh64.c, * elf64-sparc.c, * elfnn-ia64.c, * elfxx-tilegx.c,
* mmo.c, * osf-core.c, * srec.c, * vms-alpha.c: Standardize
error/warning messages.
ld/
* testsuite/ld-cris/pcrelcp-1.d,
* testsuite/ld-mmix/start-2.d: Update.
Diffstat (limited to 'bfd/elf32-nds32.c')
-rw-r--r-- | bfd/elf32-nds32.c | 51 |
1 files changed, 28 insertions, 23 deletions
diff --git a/bfd/elf32-nds32.c b/bfd/elf32-nds32.c index e325db3..62e8572 100644 --- a/bfd/elf32-nds32.c +++ b/bfd/elf32-nds32.c @@ -3230,7 +3230,7 @@ nds32_elf_final_sda_base (bfd *output_bfd, struct bfd_link_info *info, } else { - _bfd_error_handler (_("error: Can't find symbol: _SDA_BASE_.")); + _bfd_error_handler (_("error: can't find symbol: %s"), "_SDA_BASE_"); return bfd_reloc_dangerous; } } @@ -4408,15 +4408,15 @@ nds32_elf_relocate_section (bfd * output_bfd ATTRIBUTE_UNUSED, /* Set the _ITB_BASE_. */ if (!nds32_elf_ex9_itb_base (info)) { - _bfd_error_handler (_("%pB: error: Cannot set _ITB_BASE_"), - output_bfd); + _bfd_error_handler (_("%pB: error: cannot set %s"), + output_bfd, "_ITB_BASE_"); bfd_set_error (bfd_error_bad_value); } } if (table->target_optimize & NDS32_RELAX_JUMP_IFC_ON) if (!nds32_elf_ifc_reloc ()) - _bfd_error_handler (_("error: IFC relocation error.")); + _bfd_error_handler (_("error: IFC relocation error")); /* Relocation for .ex9.itable. */ if (table->target_optimize & NDS32_RELAX_EX9_ON @@ -4896,8 +4896,8 @@ nds32_elf_relocate_section (bfd * output_bfd ATTRIBUTE_UNUSED, if (bfd_link_pic (info)) { _bfd_error_handler - (_("%pB: warning: cannot deal R_NDS32_25_ABS_RELA in shared " - "mode."), input_bfd); + (_("%pB: warning: %s unsupported in shared mode"), + input_bfd, "R_NDS32_25_ABS_RELA"); return FALSE; } break; @@ -5030,7 +5030,7 @@ nds32_elf_relocate_section (bfd * output_bfd ATTRIBUTE_UNUSED, { /* Incorrect alignment. */ _bfd_error_handler - (_("%pB: warning: unaligned access to GOT entry."), input_bfd); + (_("%pB: warning: unaligned access to GOT entry"), input_bfd); ret = FALSE; r = bfd_reloc_dangerous; goto check_reloc; @@ -5072,7 +5072,7 @@ handle_sda: if (r != bfd_reloc_ok) { _bfd_error_handler - (_("%pB: warning: relocate SDA_BASE failed."), input_bfd); + (_("%pB: warning: relocate SDA_BASE failed"), input_bfd); ret = FALSE; goto check_reloc; } @@ -5094,7 +5094,8 @@ handle_sda: /* Incorrect alignment. */ _bfd_error_handler /* xgettext:c-format */ - (_("%pB(%pA): warning: unaligned small data access of type %d."), + (_("%pB(%pA): warning: unaligned small data access" + " of type %d"), input_bfd, input_section, r_type); ret = FALSE; goto check_reloc; @@ -5886,7 +5887,7 @@ nds32_elf_merge_private_bfd_data (bfd *ibfd, struct bfd_link_info *info) if (bfd_little_endian (ibfd) != bfd_little_endian (obfd)) { _bfd_error_handler - (_("%pB: warning: Endian mismatch with previous modules."), ibfd); + (_("%pB: warning: endian mismatch with previous modules"), ibfd); bfd_set_error (bfd_error_bad_value); return FALSE; @@ -5896,8 +5897,8 @@ nds32_elf_merge_private_bfd_data (bfd *ibfd, struct bfd_link_info *info) if (in_version == E_NDS32_ELF_VER_1_2) { _bfd_error_handler - (_("%pB: warning: Older version of object file encountered, " - "Please recompile with current tool chain."), ibfd); + (_("%pB: warning: older version of object file encountered, " + "please recompile with current tool chain"), ibfd); } /* We may need to merge V1 and V2 arch object files to V2. */ @@ -5974,7 +5975,7 @@ nds32_elf_merge_private_bfd_data (bfd *ibfd, struct bfd_link_info *info) if ((in_flags & EF_NDS_ABI) != (out_flags & EF_NDS_ABI)) { _bfd_error_handler - (_("%pB: error: ABI mismatch with previous modules."), ibfd); + (_("%pB: error: ABI mismatch with previous modules"), ibfd); bfd_set_error (bfd_error_bad_value); return FALSE; @@ -5985,7 +5986,8 @@ nds32_elf_merge_private_bfd_data (bfd *ibfd, struct bfd_link_info *info) if (((in_flags & EF_NDS_ARCH) != E_N1_ARCH)) { _bfd_error_handler - (_("%pB: error: Instruction set mismatch with previous modules."), ibfd); + (_("%pB: error: instruction set mismatch with previous modules"), + ibfd); bfd_set_error (bfd_error_bad_value); return FALSE; @@ -6011,7 +6013,7 @@ nds32_elf_merge_private_bfd_data (bfd *ibfd, struct bfd_link_info *info) if (in_version != out_version) _bfd_error_handler /* xgettext:c-format */ - (_("%pB: warning: Incompatible elf-versions %s and %s."), + (_("%pB: warning: incompatible elf-versions %s and %s"), ibfd, nds32_elfver_strtab[out_version], nds32_elfver_strtab[in_version]); @@ -8533,7 +8535,8 @@ done_adjust_diff: && (blank_t2->offset > raddr || blank_t2->next->offset <= raddr)) _bfd_error_handler - (_("%pB: Error: search_nds32_elf_blank reports wrong node\n"), abfd); + (_("%pB: error: search_nds32_elf_blank reports wrong node"), + abfd); /* Mark reloc in deleted portion as NONE. For some relocs like R_NDS32_LABEL that doesn't modify the @@ -11652,7 +11655,7 @@ nds32_elf_pick_relax (bfd_boolean init, asection *sec, bfd_boolean *again, break; case NDS32_RELAX_JUMP_IFC_ROUND: if (!nds32_elf_ifc_finish (link_info)) - _bfd_error_handler (_("error: Jump IFC Fail.")); + _bfd_error_handler (_("error: jump IFC fail")); if (table->target_optimize & NDS32_RELAX_EX9_ON) { pass++; @@ -11669,7 +11672,7 @@ nds32_elf_pick_relax (bfd_boolean init, asection *sec, bfd_boolean *again, { /* Do jump IFC optimization again. */ if (!nds32_elf_ifc_finish (link_info)) - _bfd_error_handler (_("error: Jump IFC Fail.")); + _bfd_error_handler (_("error: jump IFC fail")); } break; default: @@ -11780,7 +11783,8 @@ nds32_elf_relax_section (bfd *abfd, asection *sec, /* Set the _ITB_BASE_. */ if (!nds32_elf_ex9_itb_base (link_info)) { - _bfd_error_handler (_("%pB: error: Cannot set _ITB_BASE_"), abfd); + _bfd_error_handler (_("%pB: error: cannot set %s"), + abfd, "_ITB_BASE_"); bfd_set_error (bfd_error_bad_value); } } @@ -12526,7 +12530,7 @@ nds32_relax_fp_as_gp (struct bfd_link_info *link_info, /* Begin of the region. */ if (begin_rel) /* xgettext:c-format */ - _bfd_error_handler (_("%pB: Nested OMIT_FP in %pA."), abfd, sec); + _bfd_error_handler (_("%pB: nested OMIT_FP in %pA"), abfd, sec); begin_rel = irel; nds32_fag_init (&fag_head); @@ -12545,7 +12549,8 @@ nds32_relax_fp_as_gp (struct bfd_link_info *link_info, if (begin_rel == NULL) { /* xgettext:c-format */ - _bfd_error_handler (_("%pB: Unmatched OMIT_FP in %pA."), abfd, sec); + _bfd_error_handler (_("%pB: unmatched OMIT_FP in %pA"), + abfd, sec); continue; } @@ -14604,7 +14609,7 @@ nds32_elf_ex9_init (void) sizeof (struct elf_nds32_code_hash_entry), 1023)) { - _bfd_error_handler (_("Linker: cannot init ex9 hash table error \n")); + _bfd_error_handler (_("cannot init ex9 hash table error")); return FALSE; } return TRUE; @@ -15013,7 +15018,7 @@ nds32_elf_ex9_reloc_jmp (struct bfd_link_info *link_info) (fix_ptr->sec->owner, fix_ptr->sec, &source_contents, TRUE)) _bfd_error_handler - (_("Linker: error cannot fixed ex9 relocation \n")); + (_("error: cannot fix ex9 relocation")); if (temp_ptr->order < 32) insn_ex9 = INSN_EX9_IT_2; else |