summaryrefslogtreecommitdiff
path: root/src/ldso/sh
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2015-04-14 11:39:11 -0400
committerRich Felker <dalias@aerifal.cx>2015-04-14 11:39:11 -0400
commit72b25ddb77ca0974b6f448a4290d21154a221474 (patch)
treeec93468567eef410a75f4e7f8cc5b3732e838f62 /src/ldso/sh
parentcbc02ba23cec16d7a821648ea8424546bc7f02dc (diff)
downloadmusl-72b25ddb77ca0974b6f448a4290d21154a221474.tar.gz
use hidden visibility for call from dlsym to internal __dlsym
Diffstat (limited to 'src/ldso/sh')
-rw-r--r--src/ldso/sh/dlsym.s3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ldso/sh/dlsym.s b/src/ldso/sh/dlsym.s
index 8258507f..15a8dce8 100644
--- a/src/ldso/sh/dlsym.s
+++ b/src/ldso/sh/dlsym.s
@@ -1,5 +1,6 @@
.text
.global dlsym
+.hidden __dlsym
.type dlsym, @function
dlsym:
mov.l L1, r0
@@ -7,4 +8,4 @@ dlsym:
1: mov.l @r15, r6
.align 2
-L1: .long __dlsym@PLT-(1b-.)
+L1: .long __dlsym-(1b-.)