From: Ulrich Drepper Date: Tue, 7 Jan 2003 07:42:11 +0000 (+0000) Subject: (__significandl): Really return significand and not the exponent. X-Git-Tag: upstream/2.30~20306 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4d464f39c8df2c5cf0f42746b47c8f6c0c41a4b6;p=external%2Fglibc.git (__significandl): Really return significand and not the exponent. --- diff --git a/sysdeps/i386/fpu/s_significandl.c b/sysdeps/i386/fpu/s_significandl.c index f31b77a..b8cb093 100644 --- a/sysdeps/i386/fpu/s_significandl.c +++ b/sysdeps/i386/fpu/s_significandl.c @@ -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; }