mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-01 10:06:57 +03:00
2000-04-14 Andreas Jaeger <aj@suse.de>
* weaks.c: Fix typo. 2000-04-14 Andreas Jaeger <aj@suse.de> * sysdeps/generic/madvise.c: Fix typos. * sysdeps/unix/sysv/linux/mips/clone.S (error): Use __PIC__. * sysdeps/mips/bits/setjmp.h: Remove K&R compatibility. * sysdeps/mips/setjmp_aux.c (__sigsetjmp_aux): Silence gcc warnings. 2000-04-14 Andreas Jaeger <aj@suse.de> * weaks.c: Fix typo.
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
/* Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 1996, 1997, 2000 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
Contributed by Brendan Kehoe (brendan@zen.org).
|
||||
|
||||
@ -39,10 +39,10 @@ __sigsetjmp_aux (jmp_buf env, int savemask, int sp, int fp)
|
||||
asm volatile ("sw $31, %0" : : "m" (env[0].__jmpbuf[0].__pc));
|
||||
|
||||
/* .. and the stack pointer; */
|
||||
env[0].__jmpbuf[0].__sp = sp;
|
||||
env[0].__jmpbuf[0].__sp = (void *) sp;
|
||||
|
||||
/* .. and the FP; it'll be in s8. */
|
||||
env[0].__jmpbuf[0].__fp = fp;
|
||||
env[0].__jmpbuf[0].__fp = (void *) fp;
|
||||
|
||||
/* .. and the GP; */
|
||||
asm volatile ("sw $gp, %0" : : "m" (env[0].__jmpbuf[0].__gp));
|
||||
|
Reference in New Issue
Block a user