about summary refs log tree commit diff
path: root/sysdeps/sparc/sparc32/udiv.S
diff options
context:
space:
mode:
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>2017-03-16 09:15:57 -0300
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2017-04-06 15:14:44 -0300
commitbdc543e338281da051b3dc06eae96c330a485ce6 (patch)
treee4735c7a00f75d884c119f786ac968bd62525047 /sysdeps/sparc/sparc32/udiv.S
parentdb3d848e154b00071f4a5e729d5884efad410109 (diff)
downloadglibc-bdc543e338281da051b3dc06eae96c330a485ce6.tar.gz
glibc-bdc543e338281da051b3dc06eae96c330a485ce6.tar.xz
glibc-bdc543e338281da051b3dc06eae96c330a485ce6.zip
sparc: Fix .udiv plt on libc
With the removal of divdi3 object from sparcv9-linux-gnu build, its
definition came from libgcc and its functions internall calls .udiv.
Since glibc also exports these symbols for compatibility reasons, it
will end up creating PLT calls internally in libc.so.

To avoid it, this patch uses the linker option --wrap to replace all
the internal libc.so .udiv calls to the wrapper __wrap_.udiv. Along
with strong alias in the udiv implementations, it makes linker do
local calls.

Checked on sparcv9-linux-gnu.

	* sysdeps/sparc/sparc32/Makefile (libc.so-gnulib): New rule.
	* sysdeps/sparc/sparc32/sparcv8/udiv.S (.udiv): Make a strong_alias
	to __wrap_.udiv.
	* sysdeps/sparc/sparc32/sparcv9/udiv.S (.udiv): Likewise.
	* sysdeps/sparc/sparc32/udiv.S (.udiv): Likewise.
Diffstat (limited to 'sysdeps/sparc/sparc32/udiv.S')
-rw-r--r--sysdeps/sparc/sparc32/udiv.S1
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdeps/sparc/sparc32/udiv.S b/sysdeps/sparc/sparc32/udiv.S
index 8dfff66158..ade0afdf40 100644
--- a/sysdeps/sparc/sparc32/udiv.S
+++ b/sysdeps/sparc/sparc32/udiv.S
@@ -344,3 +344,4 @@ LOC(got_result):
 	mov %o2, %o0
 
 END(.udiv)
+strong_alias (.udiv, __wrap_.udiv)