From b35c4c475bea3c8f938d8e9696d1138eabb54a89 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 18 Apr 2015 21:18:23 -0400 Subject: remove potentially PIC-incompatible relocations from x86_64 and x32 asm analogous to commit 8ed66ecbcba1dd0f899f22b534aac92a282f42d5 for i386. --- src/math/x32/expl.s | 2 +- src/math/x86_64/expl.s | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/math') diff --git a/src/math/x32/expl.s b/src/math/x32/expl.s index aabea45e..369f7bd2 100644 --- a/src/math/x32/expl.s +++ b/src/math/x32/expl.s @@ -37,7 +37,7 @@ expl: fstpt (%esp) fstpt 16(%esp) fstpt 32(%esp) - call exp2l + call exp2l@PLT # if 2^hi == inf return 2^hi fld %st(0) fstpt (%esp) 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) -- cgit v1.2.1