From 87a27b3337a64d58b3a39fdc7f9e02a460bddcbc Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 13 Feb 2000 19:40:31 +0000 Subject: Update. * sysdeps/i386/fpu/s_cosf.S: Domain of opcode is not large enough so test for overflow and handle it. * sysdeps/i386/fpu/s_sinf.S: Likewise. * sysdeps/i386/fpu/s_tanf.S: Likewise. Patch by Miloslav Trmac (PR libc/1563). --- sysdeps/i386/fpu/s_tanf.S | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'sysdeps/i386/fpu/s_tanf.S') diff --git a/sysdeps/i386/fpu/s_tanf.S b/sysdeps/i386/fpu/s_tanf.S index 7a7509119b..355dff9c8d 100644 --- a/sysdeps/i386/fpu/s_tanf.S +++ b/sysdeps/i386/fpu/s_tanf.S @@ -7,10 +7,23 @@ RCSID("$NetBSD: s_tanf.S,v 1.3 1995/05/09 00:31:09 jtc Exp $") -/* A float's domain isn't large enough to require argument reduction. */ ENTRY(__tanf) flds 4(%esp) fptan + fnstsw %ax + testl $0x400,%eax + jnz 1f + fstp %st(0) + ret +1: fldpi + fadd %st(0) + fxch %st(1) +2: fprem1 + fstsw %ax + testl $0x400,%eax + jnz 2b + fstp %st(1) + fptan fstp %st(0) ret END (__tanf) -- cgit 1.4.1