about summary refs log tree commit diff
path: root/sysdeps/mips/mips64/__longjmp.c
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2000-01-11 18:08:42 +0000
committerAndreas Jaeger <aj@suse.de>2000-01-11 18:08:42 +0000
commit9c940c57ef6b0bc516b50ae055cb94fb1714ebbc (patch)
treec09f9355271e257e75d9d10b06426921a5b4793a /sysdeps/mips/mips64/__longjmp.c
parentaa20086398ab68b271757a7750f317b667c9cbe6 (diff)
downloadglibc-9c940c57ef6b0bc516b50ae055cb94fb1714ebbc.tar.gz
glibc-9c940c57ef6b0bc516b50ae055cb94fb1714ebbc.tar.xz
glibc-9c940c57ef6b0bc516b50ae055cb94fb1714ebbc.zip
Update.
	* sysdeps/mips/mips64/__longjmp.c (__longjmp): Likewise.
Diffstat (limited to 'sysdeps/mips/mips64/__longjmp.c')
-rw-r--r--sysdeps/mips/mips64/__longjmp.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/mips/mips64/__longjmp.c b/sysdeps/mips/mips64/__longjmp.c
index 551daa4895..28fef4720b 100644
--- a/sysdeps/mips/mips64/__longjmp.c
+++ b/sysdeps/mips/mips64/__longjmp.c
@@ -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 (;;);
 }