Update.
authorAndreas Jaeger <aj@suse.de>
Tue, 11 Jan 2000 18:08:42 +0000 (18:08 +0000)
committerAndreas Jaeger <aj@suse.de>
Tue, 11 Jan 2000 18:08:42 +0000 (18:08 +0000)
* sysdeps/mips/mips64/__longjmp.c (__longjmp): Likewise.

ChangeLog
sysdeps/mips/mips64/__longjmp.c

index 11336c0..6e8548f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@
 
        * sysdeps/mips/__longjmp.c (__longjmp): Change call to abort into
        infinite loop to avoid pulling in stdio in the dynamic linker.
+       * sysdeps/mips/mips64/__longjmp.c (__longjmp): Likewise.
 
 2000-01-10  Andreas Jaeger  <aj@suse.de>
 
index 551daa4..28fef47 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1992, 1995, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1992, 1995, 1997, 2000 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Brendan Kehoe (brendan@zen.org).
 
@@ -81,5 +81,6 @@ __longjmp (env, val_arg)
 
   asm volatile ("j $31");
 
-  abort ();
+  /* Avoid `volatile function does return' warnings.  */
+  for (;;);
 }