(__significandl): Really return significand and not the exponent.

This commit is contained in:
Ulrich Drepper 2003-01-07 07:42:11 +00:00
parent f7a1f1a0a1
commit 4d464f39c8

View 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;
}