* cofflink.c (_bfd_coff_generic_relocate_section): Print an error

message for bfd_reloc_outofrange, rather than aborting.  From
	Philippe De Muyter <phdm@info.ucl.ac.be>.
This commit is contained in:
Ian Lance Taylor 1996-12-02 18:18:33 +00:00
parent 0a51776738
commit 5dda64611e
1 changed files with 7 additions and 0 deletions

View File

@ -2495,6 +2495,13 @@ _bfd_coff_generic_relocate_section (output_bfd, info, input_bfd,
abort ();
case bfd_reloc_ok:
break;
case bfd_reloc_outofrange:
(*_bfd_error_handler)
("%s: bad reloc address in section `%s' at address 0x%lx",
bfd_get_filename (input_bfd),
bfd_get_section_name (input_bfd, input_section),
(unsigned long) rel->r_vaddr);
return false;
case bfd_reloc_overflow:
{
const char *name;