Support mcount/gprof test with GCC defaulting to PIE
[glibc.git] / sysdeps / i386 / fpu / e_atan2l.c
blob9f88bfcc08f1cf62674a20cf3322b38264fbeb61
1 /*
2 * Written by J.T. Conklin <jtc@netbsd.org>.
3 * Public domain.
5 * Adapted for `long double' by Ulrich Drepper <drepper@cygnus.com>.
6 */
8 #include <math_private.h>
10 long double
11 __ieee754_atan2l (long double y, long double x)
13 long double res;
15 asm ("fpatan" : "=t" (res) : "u" (y), "0" (x) : "st(1)");
17 return res;
19 strong_alias (__ieee754_atan2l, __atan2l_finite)