summaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorDiego Novillo <dnovillo@google.com>2001-03-22 00:29:15 +0000
committerDiego Novillo <dnovillo@google.com>2001-03-22 00:29:15 +0000
commitd7719192d196765c80e3cd3791105c68ae81d793 (patch)
tree3d11e7f920387e438cda64fc855a10698c80d7ce /bfd
parentba9941a61c8d0e6455b49a458a3caf3cd21d0ec1 (diff)
downloadbinutils-redhat-d7719192d196765c80e3cd3791105c68ae81d793.tar.gz
2001-03-21 Diego Novillo <dnovillo@redhat.com>
(_bfd_mips_elf_relocate_section): Give a better error message when a relocation is not recognized.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/elf32-mips.c7
2 files changed, 10 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 5e14bf712a..8c32aa88a4 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+2001-03-21 Diego Novillo <dnovillo@redhat.com>
+
+ (_bfd_mips_elf_relocate_section): Give a better error message when
+ a relocation is not recognized.
+
2001-03-21 Alan Modra <alan@linuxcare.com.au>
* elf32-hppa.c (elf32_hppa_set_gp): Check sec->output_section
diff --git a/bfd/elf32-mips.c b/bfd/elf32-mips.c
index f1a1ac37bf..33b5e4e0e6 100644
--- a/bfd/elf32-mips.c
+++ b/bfd/elf32-mips.c
@@ -6771,6 +6771,7 @@ _bfd_mips_elf_relocate_section (output_bfd, info, input_bfd, input_section,
REL relocation. */
boolean rela_relocation_p = true;
int r_type = ELF32_R_TYPE (rel->r_info);
+ const char * msg = (const char *) NULL;
/* Find the relocation howto for this relocation. */
if (r_type == R_MIPS_64 && !ABI_64_P (output_bfd))
@@ -7025,8 +7026,10 @@ _bfd_mips_elf_relocate_section (output_bfd, info, input_bfd, input_section,
continue;
case bfd_reloc_notsupported:
- abort ();
- break;
+ msg = _("internal error: unsupported relocation error");
+ info->callbacks->warning
+ (info, msg, name, input_bfd, input_section, rel->r_offset);
+ return false;
case bfd_reloc_overflow:
if (use_saved_addend_p)