summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/mips/__longjmp.c
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2002-09-10 19:50:47 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2002-09-10 19:50:47 +0000
commitba7f440e196c36a3a7b0a36893b1c0465b1ec94d (patch)
treeb48e33bda6bdf1882b526632e7fd27aec6e2c613 /libc/sysdeps/linux/mips/__longjmp.c
parent431fc6465d32db324360e947bb55cf972e85cf84 (diff)
Don't unconditionally save/restore FP registers, we might be doing soft
floating point. Thanks to Jay Carlson.
Diffstat (limited to 'libc/sysdeps/linux/mips/__longjmp.c')
-rw-r--r--libc/sysdeps/linux/mips/__longjmp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/mips/__longjmp.c b/libc/sysdeps/linux/mips/__longjmp.c
index 750a71fd1..ba0498480 100644
--- a/libc/sysdeps/linux/mips/__longjmp.c
+++ b/libc/sysdeps/linux/mips/__longjmp.c
@@ -38,6 +38,7 @@ __longjmp (env, val_arg)
register int val asm ("a1");
/* Pull back the floating point callee-saved registers. */
+#ifndef __mips_soft_float
asm volatile ("l.d $f20, %0" : : "m" (env[0].__fpregs[0]));
asm volatile ("l.d $f22, %0" : : "m" (env[0].__fpregs[1]));
asm volatile ("l.d $f24, %0" : : "m" (env[0].__fpregs[2]));
@@ -48,6 +49,7 @@ __longjmp (env, val_arg)
/* Get and reconstruct the floating point csr. */
asm volatile ("lw $2, %0" : : "m" (env[0].__fpc_csr));
asm volatile ("ctc1 $2, $31");
+#endif
/* Get the GP. */
asm volatile ("lw $gp, %0" : : "m" (env[0].__gp));