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.
This commit is contained in:
Andreas Jaeger 2000-04-14 17:36:37 +00:00
parent a54fe716da
commit 500d200d09
3 changed files with 10 additions and 10 deletions

View File

@ -1,5 +1,5 @@
/* Define the machine-dependent type `jmp_buf'. MIPS version. /* Define the machine-dependent type `jmp_buf'. MIPS version.
Copyright (C) 1992, 1993, 1995, 1997 Free Software Foundation, Inc. Copyright (C) 1992,93,95,97,2000 Free Software Foundation, Inc.
The GNU C Library is free software; you can redistribute it and/or The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as modify it under the terms of the GNU Library General Public License as
@ -23,19 +23,19 @@
typedef struct typedef struct
{ {
/* Program counter. */ /* Program counter. */
__ptr_t __pc; void * __pc;
/* Stack pointer. */ /* Stack pointer. */
__ptr_t __sp; void * __sp;
/* Callee-saved registers s0 through s7. */ /* Callee-saved registers s0 through s7. */
int __regs[8]; int __regs[8];
/* The frame pointer. */ /* The frame pointer. */
__ptr_t __fp; void * __fp;
/* The global pointer. */ /* The global pointer. */
__ptr_t __gp; void * __gp;
/* Floating point status register. */ /* Floating point status register. */
int __fpc_csr; int __fpc_csr;
@ -53,4 +53,4 @@ typedef struct
/* Test if longjmp to JMPBUF would unwind the frame /* Test if longjmp to JMPBUF would unwind the frame
containing a local variable at ADDRESS. */ containing a local variable at ADDRESS. */
#define _JMPBUF_UNWINDS(jmpbuf, address) \ #define _JMPBUF_UNWINDS(jmpbuf, address) \
((__ptr_t) (address) < (jmpbuf)[0].__sp) ((void *) (address) < (jmpbuf)[0].__sp)

View File

@ -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. This file is part of the GNU C Library.
Contributed by Brendan Kehoe (brendan@zen.org). 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)); asm volatile ("sw $31, %0" : : "m" (env[0].__jmpbuf[0].__pc));
/* .. and the stack pointer; */ /* .. 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. */ /* .. and the FP; it'll be in s8. */
env[0].__jmpbuf[0].__fp = fp; env[0].__jmpbuf[0].__fp = (void *) fp;
/* .. and the GP; */ /* .. and the GP; */
asm volatile ("sw $gp, %0" : : "m" (env[0].__jmpbuf[0].__gp)); asm volatile ("sw $gp, %0" : : "m" (env[0].__jmpbuf[0].__gp));

View File

@ -72,7 +72,7 @@ NESTED(__clone,4*SZREG,sp)
/* Something bad happened -- no child created */ /* Something bad happened -- no child created */
error: error:
addiu sp,32 addiu sp,32
#ifdef PIC #ifdef __PIC__
la t9,__syscall_error la t9,__syscall_error
jr t9 jr t9
#else #else