fix build regression in sh-nofpu subarch due to missing symbol

commit 646cb9a4a0 switched sigsetjmp to
use the new hidden ___setjmp symbol for setjmp, but the nofpu variant
of setjmp.s was not updated to match.
This commit is contained in:
Rich Felker 2015-04-24 11:45:25 -04:00
parent 7faee5fa0d
commit a658afbf94

View File

@ -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: