]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(__significandl): Really return significand and not the exponent.
authorUlrich Drepper <drepper@redhat.com>
Tue, 7 Jan 2003 07:42:11 +0000 (07:42 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 7 Jan 2003 07:42:11 +0000 (07:42 +0000)
sysdeps/i386/fpu/s_significandl.c

index f31b77abbe65f4008f5738fc6c34f9093144618f..b8cb093502334c042202735e974da535ec2aca36 100644 (file)
@@ -12,7 +12,7 @@ __significandl (long double x)
   long double res;
 
   asm ("fxtract\n"
-       "fstp   %%st(0)" : "=t" (res) : "0" (x));
+       "fstp   %%st(1)" : "=t" (res) : "0" (x));
   return res;
 }