diff options
Diffstat (limited to 'libc/sysdeps/linux/nios2/bsd-_setjmp.S')
-rw-r--r-- | libc/sysdeps/linux/nios2/bsd-_setjmp.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/nios2/bsd-_setjmp.S b/libc/sysdeps/linux/nios2/bsd-_setjmp.S index ac101bdff..e1350f55e 100644 --- a/libc/sysdeps/linux/nios2/bsd-_setjmp.S +++ b/libc/sysdeps/linux/nios2/bsd-_setjmp.S @@ -11,6 +11,7 @@ * */ +#include <features.h> #include <jmpbuf-offsets.h> .globl _setjmp @@ -32,7 +33,7 @@ _setjmp: stw fp, JB_FP(r4) stw gp, JB_GP(r4) -#if defined(__HAVE_FPU__) +#ifdef __UCLIBC_HAS_FPU__ SAVE_FPU r4 JB_FPREGS #endif stw r0, JB_SIZE(r4) /* signal mask is not saved */ |