diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2001-07-13 15:41:39 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@redhat.com> | 2001-07-13 15:41:39 +0000 |
commit | 0b4bfdd527057200c294e6f62ad1552d981c13dd (patch) | |
tree | 0fafda496c52fc0fd1b9fce7a2c66a2958760405 | |
parent | dfd34b9e6d4b953a5e8c4ed0b3dc8ce444ad5440 (diff) | |
download | newlib-0b4bfdd527057200c294e6f62ad1552d981c13dd.zip newlib-0b4bfdd527057200c294e6f62ad1552d981c13dd.tar.gz newlib-0b4bfdd527057200c294e6f62ad1552d981c13dd.tar.bz2 |
2001-07-12 Aldy Hernandez <aldyh@redhat.com>
* libc/machine/mips/setjmp.S: Allow mips16 and mips64 to coexist.
-rw-r--r-- | newlib/ChangeLog | 4 | ||||
-rw-r--r-- | newlib/libc/machine/mips/setjmp.S | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 040a00e..3adb3e0 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,7 @@ +2001-07-12 Aldy Hernandez <aldyh@redhat.com> + + * libc/machine/mips/setjmp.S: Allow mips16 and mips64 to coexist. + 2001-06-27 Nick Clifton <nickc@cambridge.redhat.com> * libc/include/machine/ieeefp.h (__IEEE_BYTES_LITTLE_ENDIAN): diff --git a/newlib/libc/machine/mips/setjmp.S b/newlib/libc/machine/mips/setjmp.S index 9532e7a..9778394 100644 --- a/newlib/libc/machine/mips/setjmp.S +++ b/newlib/libc/machine/mips/setjmp.S @@ -9,12 +9,10 @@ The MIPS 64 version saves registers fp20 to fp31. 23 registers are saved in all. */ -#ifndef __mips64 #ifdef __mips16 /* This file contains 32 bit assembly code. */ .set nomips16 #endif -#endif /* int setjmp (jmp_buf); */ .globl setjmp |