aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/i386/fpu/e_atan2l.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/i386/fpu/e_atan2l.c')
-rw-r--r--sysdeps/i386/fpu/e_atan2l.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/sysdeps/i386/fpu/e_atan2l.c b/sysdeps/i386/fpu/e_atan2l.c
deleted file mode 100644
index 9f88bfcc08..0000000000
--- a/sysdeps/i386/fpu/e_atan2l.c
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * Written by J.T. Conklin <jtc@netbsd.org>.
- * Public domain.
- *
- * Adapted for `long double' by Ulrich Drepper <drepper@cygnus.com>.
- */
-
-#include <math_private.h>
-
-long double
-__ieee754_atan2l (long double y, long double x)
-{
- long double res;
-
- asm ("fpatan" : "=t" (res) : "u" (y), "0" (x) : "st(1)");
-
- return res;
-}
-strong_alias (__ieee754_atan2l, __atan2l_finite)