summaryrefslogtreecommitdiffstats
path: root/lib/libc/amd64/gen/sigsetjmp.S
diff options
context:
space:
mode:
authorjdp <jdp@FreeBSD.org>1996-05-11 13:28:11 +0000
committerjdp <jdp@FreeBSD.org>1996-05-11 13:28:11 +0000
commit0444ae2f098625bc0d42ee2733730ea847b62645 (patch)
treeb4aeb8f8631258384498a078645d1ae20d9d5255 /lib/libc/amd64/gen/sigsetjmp.S
parentb36c9f21b7e8ddbe63a06ab0ee136c6e19b9af9f (diff)
downloadFreeBSD-src-0444ae2f098625bc0d42ee2733730ea847b62645.zip
FreeBSD-src-0444ae2f098625bc0d42ee2733730ea847b62645.tar.gz
Fix a bug caused by the collision of a local assembler label with another
use of the same label in a recently-introduced PIC_PROLOGUE. This should solve the recent core dumps from pdksh.
Diffstat (limited to 'lib/libc/amd64/gen/sigsetjmp.S')
-rw-r--r--lib/libc/amd64/gen/sigsetjmp.S16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/libc/amd64/gen/sigsetjmp.S b/lib/libc/amd64/gen/sigsetjmp.S
index 1d56f29..ff6ed8d 100644
--- a/lib/libc/amd64/gen/sigsetjmp.S
+++ b/lib/libc/amd64/gen/sigsetjmp.S
@@ -33,12 +33,12 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: sigsetjmp.S,v 1.6 1996/02/17 12:25:21 peter Exp $
+ * $Id: sigsetjmp.S,v 1.7 1996/05/05 07:56:07 peter Exp $
*/
#if defined(LIBC_RCS) && !defined(lint)
.text
- .asciz "$Id: sigsetjmp.S,v 1.6 1996/02/17 12:25:21 peter Exp $"
+ .asciz "$Id: sigsetjmp.S,v 1.7 1996/05/05 07:56:07 peter Exp $"
#endif /* LIBC_RCS and not lint */
#include "DEFS.h"
@@ -68,7 +68,7 @@ ENTRY(sigsetjmp)
movl 4(%esp),%ecx
movl %eax,32(%ecx)
testl %eax,%eax
- jz 1f
+ jz 2f
PIC_PROLOGUE
pushl $0
#ifdef _THREAD_SAFE
@@ -80,7 +80,7 @@ ENTRY(sigsetjmp)
PIC_EPILOGUE
movl 4(%esp),%ecx
movl %eax,24(%ecx)
-1: movl 0(%esp),%edx
+2: movl 0(%esp),%edx
movl %edx, 0(%ecx)
movl %ebx, 4(%ecx)
movl %esp, 8(%ecx)
@@ -98,7 +98,7 @@ ENTRY(siglongjmp)
#endif
movl 4(%esp),%edx
cmpl $0,32(%edx)
- jz 1f
+ jz 2f
PIC_PROLOGUE
pushl 24(%edx)
#ifdef _THREAD_SAFE
@@ -108,7 +108,7 @@ ENTRY(siglongjmp)
#endif
addl $4,%esp
PIC_EPILOGUE
-1: movl 4(%esp),%edx
+2: movl 4(%esp),%edx
movl 8(%esp),%eax
movl 0(%edx),%ecx
movl 4(%edx),%ebx
@@ -119,7 +119,7 @@ ENTRY(siglongjmp)
fninit
fldcw 28(%edx)
testl %eax,%eax
- jnz 2f
+ jnz 1f
incl %eax
-2: movl %ecx,0(%esp)
+1: movl %ecx,0(%esp)
ret
OpenPOWER on IntegriCloud