From: Andreas Jaeger Date: Tue, 11 Jan 2000 18:08:15 +0000 (+0000) Subject: 2000-01-11 Andreas Schwab X-Git-Tag: upstream/2.30~10627^2~2751 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6959849dcf5c8fab650e95b917b4bf9eb35a0761;p=external%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. * sysdeps/mips/mips64/__longjmp.c (__longjmp): Likewise. --- diff --git a/sysdeps/mips/mips64/__longjmp.c b/sysdeps/mips/mips64/__longjmp.c index 551daa4..28fef47 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 (;;); }