diff options
author | Rich Felker <dalias@aerifal.cx> | 2015-04-18 21:18:23 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2015-04-18 21:18:23 -0400 |
commit | b35c4c475bea3c8f938d8e9696d1138eabb54a89 (patch) | |
tree | 40d3f046173125a3a038e8b8c912bbcf35ac1003 /src/math/x86_64 | |
parent | 8ed66ecbcba1dd0f899f22b534aac92a282f42d5 (diff) | |
download | musl-b35c4c475bea3c8f938d8e9696d1138eabb54a89.tar.gz musl-b35c4c475bea3c8f938d8e9696d1138eabb54a89.tar.bz2 musl-b35c4c475bea3c8f938d8e9696d1138eabb54a89.tar.xz musl-b35c4c475bea3c8f938d8e9696d1138eabb54a89.zip |
remove potentially PIC-incompatible relocations from x86_64 and x32 asm
analogous to commit 8ed66ecbcba1dd0f899f22b534aac92a282f42d5 for i386.
Diffstat (limited to 'src/math/x86_64')
-rw-r--r-- | src/math/x86_64/expl.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/x86_64/expl.s b/src/math/x86_64/expl.s index 3add810d..798261d2 100644 --- a/src/math/x86_64/expl.s +++ b/src/math/x86_64/expl.s @@ -37,7 +37,7 @@ expl: fstpt (%rsp) fstpt 16(%rsp) fstpt 32(%rsp) - call exp2l + call exp2l@PLT # if 2^hi == inf return 2^hi fld %st(0) fstpt (%rsp) |