diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2002-02-08 07:11:13 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2002-02-08 07:11:13 +0000 |
commit | 9f25eed9c96cb37ee58fcb65aafb44f9c6183dde (patch) | |
tree | 883185ab319291de419f4bba42754e7a71b23560 /newlib/libc/include/machine | |
parent | 561486e7f1220b06414524d9b72eca3794a45dd3 (diff) | |
download | cygnal-9f25eed9c96cb37ee58fcb65aafb44f9c6183dde.tar.gz cygnal-9f25eed9c96cb37ee58fcb65aafb44f9c6183dde.tar.bz2 cygnal-9f25eed9c96cb37ee58fcb65aafb44f9c6183dde.zip |
Contribute sh64-elf.
2001-03-13 Alexandre Oliva <aoliva@redhat.com>
* configure.host (newlib_cflags) [sh*-*-*]: Enable long long
support in printf.
2001-01-29 Alexandre Oliva <aoliva@redhat.com>
* libc/machine/sh/setjmp.S [SH5]: Switch to SHmedia mode before
any labels.
2001-01-24 Alexandre Oliva <aoliva@redhat.com>
* libc/sys/sh/trap.S (___trap34) [SH5]: Don't trash r2.
2000-12-16 Alexandre Oliva <aoliva@redhat.com>
* libc/machine/sh/configure.in: Rework conditionals.
* libc/machine/sh/Makefile.am: Likewise.
* libc/machine/sh/configure, libc/machine/sh/Makefile.in: Rebuilt.
2000-12-01 Alexandre Oliva <aoliva@redhat.com>
* configure.host: Match `sh*'.
* libc/include/machine/setjmp.h: Define for SH5.
* libc/machine/sh/configure.in: Detect SH5.
* libc/machine/sh/configure: Rebuilt.
* libc/machine/sh/Makefile.am: Use only setjmp.S for SH5.
* libc/machine/sh/Makefile.in: Rebuilt.
* libc/machine/sh/asm.h: Adjust for SH5.
* libc/machine/sh/setjmp.S: Implement in SHmedia.
* libc/sys/sh/crt0.S: Likewise.
* libc/sys/sh/trap.S: Likewise.
Diffstat (limited to 'newlib/libc/include/machine')
-rw-r--r-- | newlib/libc/include/machine/setjmp.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/newlib/libc/include/machine/setjmp.h b/newlib/libc/include/machine/setjmp.h index 3e57f6e8f..c7f146338 100644 --- a/newlib/libc/include/machine/setjmp.h +++ b/newlib/libc/include/machine/setjmp.h @@ -93,7 +93,12 @@ typedef int jmp_buf[_JBLEN]; #endif #ifdef __sh__ +#if __SH5__ +#define _JBLEN 50 +#define _JBTYPE long long +#else #define _JBLEN 20 +#endif /* __SH5__ */ #endif #ifdef __v800 |