From 626fb8866b961836edb83dc2d25b80e9c5bab71d Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 5 Apr 2001 17:20:49 +0000 Subject: Update. * sysdeps/ieee754/ldbl-96/e_asinl.c: Correct handling of +-Inf. * sysdeps/i386/fpu/e_asinl.S: Removed. Too inaccurate. --- sysdeps/i386/fpu/e_asinl.S | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 sysdeps/i386/fpu/e_asinl.S (limited to 'sysdeps/i386/fpu') diff --git a/sysdeps/i386/fpu/e_asinl.S b/sysdeps/i386/fpu/e_asinl.S deleted file mode 100644 index 3919fbcf58..0000000000 --- a/sysdeps/i386/fpu/e_asinl.S +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Written by J.T. Conklin . - * Public domain. - * - * Adapted for `long double' by Ulrich Drepper . - */ - -#include - -RCSID("$NetBSD: $") - -/* asinl = atanl (x / sqrtl(1 - x^2)) */ -ENTRY(__ieee754_asinl) - fldt 4(%esp) /* x */ - fld %st - fmul %st(0) /* x^2 */ - fld1 - fsubp /* 1 - x^2 */ - fsqrt /* sqrt (1 - x^2) */ - fpatan - ret -END (__ieee754_asinl) -- cgit v1.2.3