From b4bd7fea240d6e9c37aee7777e91fa7f6bdfa02a Mon Sep 17 00:00:00 2001 From: jtc Date: Sat, 24 Dec 1994 01:16:44 +0000 Subject: [PATCH] Replaced pops with adds. --- lib/libc/arch/i386/gen/setjmp.S | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/libc/arch/i386/gen/setjmp.S b/lib/libc/arch/i386/gen/setjmp.S index a72b904a31bb..21bf323b320e 100644 --- a/lib/libc/arch/i386/gen/setjmp.S +++ b/lib/libc/arch/i386/gen/setjmp.S @@ -34,12 +34,12 @@ * SUCH DAMAGE. * * from: @(#)setjmp.s 5.1 (Berkeley) 4/23/90 - * $Id: setjmp.S,v 1.5 1994/01/27 06:34:06 mycroft Exp $ + * $Id: setjmp.S,v 1.6 1994/12/24 01:16:44 jtc Exp $ */ #if defined(LIBC_SCCS) .text - .asciz "$Id: setjmp.S,v 1.5 1994/01/27 06:34:06 mycroft Exp $" + .asciz "$Id: setjmp.S,v 1.6 1994/12/24 01:16:44 jtc Exp $" #endif /* @@ -62,7 +62,7 @@ ENTRY(setjmp) #else call _sigblock #endif - popl %edx + addl $4,%esp movl 4(%esp),%ecx movl 0(%esp),%edx movl %edx, 0(%ecx) @@ -83,7 +83,7 @@ ENTRY(longjmp) #else call _sigsetmask #endif - popl %eax + addl $4,%esp movl 4(%esp),%edx movl 8(%esp),%eax movl 0(%edx),%ecx