From: Andreas Jaeger Date: Tue, 11 Jan 2000 17:12:43 +0000 (+0000) Subject: 2000-01-11 Andreas Schwab X-Git-Tag: glibc-2.16-ports-before-merge~2752 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f81825597154caf652683efff52ae2bc3eb71b20;p=thirdparty%2Fglibc.git 2000-01-11 Andreas Schwab * sysdeps/mips/__longjmp.c (__longjmp): Change call to abort into infinite loop to avoid pulling in stdio in the dynamic linker. --- diff --git a/sysdeps/mips/__longjmp.c b/sysdeps/mips/__longjmp.c index 9b4c1e14e0f..e9ef5cff3dd 100644 --- a/sysdeps/mips/__longjmp.c +++ b/sysdeps/mips/__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). @@ -79,5 +79,6 @@ __longjmp (env, val_arg) asm volatile ("j $31"); - abort (); + /* Avoid `volatile function does return' warnings. */ + for (;;); }