From 348c5e06c250a58e3890f4968c5962a282680ec4 Mon Sep 17 00:00:00 2001 From: Jeff Johnston Date: Wed, 29 Aug 2001 20:09:31 +0000 Subject: 2001-08-29 Joel Sherrill * libc/include/sys/unistd.h: Prototype chroot() for RTEMS. 2001-08-29 Ralf Corsepius * libc/machine/i386/f_atan2.S, libc/machine/i386/f_atan2f.S, libc/machine/i386/f_exp.c, libc/machine/i386/f_expf.c, libc/machine/i386/f_frexp.S, libc/machine/i386/f_frexpf.S, libc/machine/i386/f_ldexp.S, libc/machine/i386/f_ldexpf.S, libc/machine/i386/f_log.S, libc/machine/i386/f_log10.S, libc/machine/i386/f_log10f.S, libc/machine/i386/f_logf.S, libc/machine/i386/f_pow.c, libc/machine/i386/f_powf.c, libc/machine/i386/f_tan.S, libc/machine/i386/f_tanf.S: Add conditional compilation to avoid HW FPU instructions when compiled for soft-float. --- newlib/libc/machine/i386/f_tanf.S | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'newlib/libc/machine/i386/f_tanf.S') diff --git a/newlib/libc/machine/i386/f_tanf.S b/newlib/libc/machine/i386/f_tanf.S index 23ba7376a..3d0b903c7 100644 --- a/newlib/libc/machine/i386/f_tanf.S +++ b/newlib/libc/machine/i386/f_tanf.S @@ -8,6 +8,8 @@ * ==================================================== */ +#if !defined(_SOFT_FLOAT) + /* Fast version of tanf using Intel float instructions. @@ -31,3 +33,5 @@ SYM (_f_tanf): leave ret + +#endif -- cgit v1.2.3