aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/i386/fpu/e_sqrtl.c
blob: 8f284dd75cc154c824a413492fd7543a88df0e01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Written by J.T. Conklin <jtc@netbsd.org>.
 * Public domain.
 *
 * Adapted for `long double' by Ulrich Drepper <drepper@cygnus.com>.
 */

#include <math_private.h>
#include <libm-alias-finite.h>

#undef __ieee754_sqrtl
long double
__ieee754_sqrtl (long double x)
{
  long double res;

  asm ("fsqrt" : "=t" (res) : "0" (x));

  return res;
}
libm_alias_finite (__ieee754_sqrtl, __sqrtl)