PR ld/10569
authorAlan Modra <amodra@gmail.com>
Sun, 30 Aug 2009 05:46:27 +0000 (05:46 +0000)
committerAlan Modra <amodra@gmail.com>
Sun, 30 Aug 2009 05:46:27 +0000 (05:46 +0000)
* bfd.c (bfd_emul_get_maxpagesize): Don't abort.
(bfd_emul_get_commonpagesize): Likewise.

bfd/ChangeLog
bfd/bfd.c

index 20b91e899d916460812f0f54fe5bb4323d883f1f..9ace58eb9012cd73ae11a98463ad79e445a119a8 100644 (file)
@@ -1,3 +1,9 @@
+2009-08-30  Alan Modra  <amodra@bigpond.net.au>
+
+       PR ld/10569
+       * bfd.c (bfd_emul_get_maxpagesize): Don't abort.
+       (bfd_emul_get_commonpagesize): Likewise.
+
 2009-08-29  Martin Thuresson  <martin@mtme.org>
 
        * elf32-arm.c (struct stub_def): Rename member template to
index 4a1b5caa08341c9d546b760d932d3e37c3a77007..549e8526a062786a896ff17056c559c54b142d33 100644 (file)
--- a/bfd/bfd.c
+++ b/bfd/bfd.c
@@ -1703,8 +1703,7 @@ DESCRIPTION
        emulation.
 
 RETURNS
-       Returns the maximum page size in bytes for ELF, abort
-       otherwise.
+       Returns the maximum page size in bytes for ELF, 0 otherwise.
 */
 
 bfd_vma
@@ -1717,7 +1716,6 @@ bfd_emul_get_maxpagesize (const char *emul)
       && target->flavour == bfd_target_elf_flavour)
     return xvec_get_elf_backend_data (target)->maxpagesize;
 
-  abort ();
   return 0;
 }
 
@@ -1776,7 +1774,7 @@ DESCRIPTION
        emulation.
 
 RETURNS
-       Returns the common page size in bytes for ELF, abort otherwise.
+       Returns the common page size in bytes for ELF, 0 otherwise.
 */
 
 bfd_vma
@@ -1789,7 +1787,6 @@ bfd_emul_get_commonpagesize (const char *emul)
       && target->flavour == bfd_target_elf_flavour)
     return xvec_get_elf_backend_data (target)->commonpagesize;
 
-  abort ();
   return 0;
 }