about summary refs log tree commit diff
path: root/REORG.TODO/sysdeps/i386/fpu/s_significandl.c
blob: b8cb093502334c042202735e974da535ec2aca36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Written by J.T. Conklin <jtc@netbsd.org>.
 * Changes for long double by Ulrich Drepper <drepper@cygnus.com>
 * Public domain.
 */

#include <math_private.h>

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)