diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-06-02 16:48:22 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-06-02 16:48:22 -0400 |
commit | 19e48c5531fda9c4767b99b754cb9345902dd100 (patch) | |
tree | e56a453927089ddc48c1ef7d20dd7c905e10a402 | |
parent | 9ea20dcbaafe790bb034adadf05698088a2f9fab (diff) | |
download | musl-19e48c5531fda9c4767b99b754cb9345902dd100.tar.gz musl-19e48c5531fda9c4767b99b754cb9345902dd100.tar.xz musl-19e48c5531fda9c4767b99b754cb9345902dd100.zip |
use fistpll mnemonic instead of fistpq (more widely supported) on x86_64 too
this was fixed previously on i386 but the corresponding code on x86_64 was missed.
-rw-r--r-- | src/math/x86_64/llrintl.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/x86_64/llrintl.s b/src/math/x86_64/llrintl.s index 3f3b7eea..1ec0817d 100644 --- a/src/math/x86_64/llrintl.s +++ b/src/math/x86_64/llrintl.s @@ -2,6 +2,6 @@ .type llrintl,@function llrintl: fldt 8(%rsp) - fistpq 8(%rsp) + fistpll 8(%rsp) mov 8(%rsp),%rax ret |