(__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 f31b77a..b8cb093 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;
 }