diff options
author | Rich Felker <dalias@aerifal.cx> | 2015-04-24 11:45:25 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2015-04-24 11:45:25 -0400 |
commit | a658afbf94a41108d2e01bbc4113011b792b3bad (patch) | |
tree | eb8c8ec59207e5a985664fbc551823525cab552e /src/setjmp/sh-nofpu | |
parent | 7faee5fa0d09a1d3a64141ee597ed9a853fd5892 (diff) | |
download | musl-a658afbf94a41108d2e01bbc4113011b792b3bad.tar.gz musl-a658afbf94a41108d2e01bbc4113011b792b3bad.tar.xz musl-a658afbf94a41108d2e01bbc4113011b792b3bad.zip |
fix build regression in sh-nofpu subarch due to missing symbol
commit 646cb9a4a04e5ed78e2dd928bf9dc6e79202f609 switched sigsetjmp to use the new hidden ___setjmp symbol for setjmp, but the nofpu variant of setjmp.s was not updated to match.
Diffstat (limited to 'src/setjmp/sh-nofpu')
-rw-r--r-- | src/setjmp/sh-nofpu/setjmp.s | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/setjmp/sh-nofpu/setjmp.s b/src/setjmp/sh-nofpu/setjmp.s index c6c7359a..41210f92 100644 --- a/src/setjmp/sh-nofpu/setjmp.s +++ b/src/setjmp/sh-nofpu/setjmp.s @@ -1,9 +1,12 @@ +.global ___setjmp +.hidden ___setjmp .global __setjmp .global _setjmp .global setjmp .type __setjmp, @function .type _setjmp, @function .type setjmp, @function +___setjmp: __setjmp: _setjmp: setjmp: |