mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 13:00:06 +00:00
(__significandl): Really return significand and not the exponent.
This commit is contained in:
parent
f7a1f1a0a1
commit
4d464f39c8
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user