From: Thiemo Seufer Date: Thu, 26 Jul 2007 11:05:23 +0000 (+0000) Subject: * bfd.c (_bfd_set_gp_value): Use abort instead of BFD_FAIL. X-Git-Tag: binutils-2_18-branchpoint~105 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c2c966314bffced41c51b7bd0562c1d7a5c679ea;p=external%2Fbinutils.git * bfd.c (_bfd_set_gp_value): Use abort instead of BFD_FAIL. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index dc021fa..53bfe0d 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2007-07-26 Thiemo Seufer + + * bfd.c (_bfd_set_gp_value): Use abort instead of BFD_FAIL. + 2007-07-26 Alan Modra * reloc.c (bfd_generic_get_relocated_section_contents): Avoid diff --git a/bfd/bfd.c b/bfd/bfd.c index 2c5a429..60ad118 100644 --- a/bfd/bfd.c +++ b/bfd/bfd.c @@ -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;