diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-02-05 01:01:39 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-02-05 01:01:39 +0000 |
commit | 0899b8897c1bcec464c0e220dd118f293bab05eb (patch) | |
tree | a3c9ec843b443ac85b2b3bc23913385c498bd59b /sysdeps/unix/sysv/linux/sh/sh4/setcontext.S | |
parent | 22cc3f7580c97122906e147addbc798e43081079 (diff) | |
download | glibc-0899b8897c1bcec464c0e220dd118f293bab05eb.tar glibc-0899b8897c1bcec464c0e220dd118f293bab05eb.tar.gz glibc-0899b8897c1bcec464c0e220dd118f293bab05eb.tar.bz2 glibc-0899b8897c1bcec464c0e220dd118f293bab05eb.zip |
* sysdeps/sh/sh4/dl-trampoline.S: Only set HAVE_FPU if __SH_FPU_ANY__
is set.
* sysdeps/sh/sh4/setjmp.S: Support SH4-NOFPU.
* sysdeps/sh/sh4/__longjmp.S: Likewise.
* sysdeps/unix/sysv/linux/sh/sh4/getcontext.S: Likewise.
* sysdeps/unix/sysv/linux/sh/sh4/setcontext.S: Likewise.
* sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S: Likewise.
* sysdeps/unix/sysv/linux/sh/sh4/register-dump.h: Likewise.
Diffstat (limited to 'sysdeps/unix/sysv/linux/sh/sh4/setcontext.S')
-rw-r--r-- | sysdeps/unix/sysv/linux/sh/sh4/setcontext.S | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/sh/sh4/setcontext.S b/sysdeps/unix/sysv/linux/sh/sh4/setcontext.S index 2bc546d1a1..48f6d4c721 100644 --- a/sysdeps/unix/sysv/linux/sh/sh4/setcontext.S +++ b/sysdeps/unix/sysv/linux/sh/sh4/setcontext.S @@ -1,5 +1,5 @@ /* Install given context. - Copyright (C) 2005 Free Software Foundation, Inc. + Copyright (C) 2005, 2009 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -43,13 +43,14 @@ ENTRY(__setcontext) not r1, r1 // r1=0 means r0 = -1 to -4095 tst r1, r1 // i.e. error in linux bf .Lsetcontext_restore -.Lsyscall_error: +.Lsyscall_error: SYSCALL_ERROR_HANDLER .Lpseudo_end: rts nop .Lsetcontext_restore: +#ifdef __SH_FPU_ANY__ mov r8, r0 add #(oFR0),r0 fmov.s @r0+, fr0 @@ -88,6 +89,7 @@ ENTRY(__setcontext) frchg lds.l @r0+, fpscr lds.l @r0+, fpul +#endif /* __SH_FPU_ANY__ */ mov r8, r0 add #(oPC), r0 |