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-spu.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-spu.c')
-rw-r--r-- | bfd/elf32-spu.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bfd/elf32-spu.c b/bfd/elf32-spu.c index 8279550..d682de2 100644 --- a/bfd/elf32-spu.c +++ b/bfd/elf32-spu.c @@ -724,7 +724,7 @@ spu_elf_find_overlays (struct bfd_link_info *info) if ((s->vma - vma_start) & (htab->params->line_size - 1)) { info->callbacks->einfo (_("%X%P: overlay section %pA " - "does not start on a cache line.\n"), + "does not start on a cache line\n"), s); bfd_set_error (bfd_error_bad_value); return 0; @@ -732,7 +732,7 @@ spu_elf_find_overlays (struct bfd_link_info *info) else if (s->size > htab->params->line_size) { info->callbacks->einfo (_("%X%P: overlay section %pA " - "is larger than a cache line.\n"), + "is larger than a cache line\n"), s); bfd_set_error (bfd_error_bad_value); return 0; @@ -752,7 +752,7 @@ spu_elf_find_overlays (struct bfd_link_info *info) if (s->vma < ovl_end) { info->callbacks->einfo (_("%X%P: overlay section %pA " - "is not in cache area.\n"), + "is not in cache area\n"), alloc_sec[i-1]); bfd_set_error (bfd_error_bad_value); return 0; @@ -794,7 +794,7 @@ spu_elf_find_overlays (struct bfd_link_info *info) /* xgettext:c-format */ info->callbacks->einfo (_("%X%P: overlay sections %pA " "and %pA do not start at the " - "same address.\n"), + "same address\n"), s0, s); bfd_set_error (bfd_error_bad_value); return 0; @@ -3321,7 +3321,7 @@ remove_cycles (struct function_info *fun, const char *f2 = func_name (call->fun); /* xgettext:c-format */ - info->callbacks->info (_("Stack analysis will ignore the call " + info->callbacks->info (_("stack analysis will ignore the call " "from %s to %s\n"), f1, f2); } |