* bfd.c (_bfd_set_gp_value): Use abort instead of BFD_FAIL.
authorThiemo Seufer <ths@networkno.de>
Thu, 26 Jul 2007 11:05:23 +0000 (11:05 +0000)
committerThiemo Seufer <ths@networkno.de>
Thu, 26 Jul 2007 11:05:23 +0000 (11:05 +0000)
bfd/ChangeLog
bfd/bfd.c

index dc021fa..53bfe0d 100644 (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
index 2c5a429..60ad118 100644 (file)
--- 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;