about summary refs log tree commit diff
path: root/sysdeps/i386/fpu/s_significandl.c
blob: a11c981b54f117773183452a0a88c31ed6bcd415 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Public domain.
 */


long double
__significandl (long double x)
{
  long double res;

  asm ("fxtract\n"
       "fstp	%%st(1)" : "=t" (res) : "0" (x));
  return res;
}

weak_alias (__significandl, significandl)