From 4d464f39c8df2c5cf0f42746b47c8f6c0c41a4b6 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 7 Jan 2003 07:42:11 +0000 Subject: (__significandl): Really return significand and not the exponent. --- sysdeps/i386/fpu/s_significandl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sysdeps/i386/fpu') diff --git a/sysdeps/i386/fpu/s_significandl.c b/sysdeps/i386/fpu/s_significandl.c index f31b77abbe..b8cb093502 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; } -- cgit v1.2.3