diff options
author | Rich Felker <dalias@aerifal.cx> | 2015-04-14 11:39:11 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2015-04-14 11:39:11 -0400 |
commit | 72b25ddb77ca0974b6f448a4290d21154a221474 (patch) | |
tree | ec93468567eef410a75f4e7f8cc5b3732e838f62 /src/ldso/sh | |
parent | cbc02ba23cec16d7a821648ea8424546bc7f02dc (diff) | |
download | musl-72b25ddb77ca0974b6f448a4290d21154a221474.tar.gz musl-72b25ddb77ca0974b6f448a4290d21154a221474.tar.xz musl-72b25ddb77ca0974b6f448a4290d21154a221474.zip |
use hidden visibility for call from dlsym to internal __dlsym
Diffstat (limited to 'src/ldso/sh')
-rw-r--r-- | src/ldso/sh/dlsym.s | 3 |
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-.) |