* bfd.c (_bfd_set_gp_value): Use abort instead of BFD_FAIL.

This commit is contained in:
Thiemo Seufer 2007-07-26 11:05:23 +00:00
parent 9ceb0b4c1d
commit c2c966314b
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-07-26 Thiemo Seufer <ths@mips.com>
* bfd.c (_bfd_set_gp_value): Use abort instead of BFD_FAIL.
2007-07-26 Alan Modra <amodra@bigpond.net.au>
* reloc.c (bfd_generic_get_relocated_section_contents): Avoid

View File

@ -1020,7 +1020,7 @@ void
_bfd_set_gp_value (bfd *abfd, bfd_vma v)
{
if (! abfd)
BFD_FAIL ();
abort ();
if (abfd->format != bfd_object)
return;