From 3a17f757a80816961cd1fbf4664a5cbb02563b2d Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 26 May 2011 20:59:02 -0400 Subject: modernize coding style in sjlj asm --- src/setjmp/i386/longjmp.s | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'src/setjmp/i386/longjmp.s') diff --git a/src/setjmp/i386/longjmp.s b/src/setjmp/i386/longjmp.s index c1a956c3..249d7b4d 100644 --- a/src/setjmp/i386/longjmp.s +++ b/src/setjmp/i386/longjmp.s @@ -4,19 +4,19 @@ .type longjmp,%function _longjmp: longjmp: - movl 4(%esp),%edx - movl 8(%esp),%eax - testl %eax,%eax - jnz .L0 - incl %eax -.L0: - movl (%edx),%ebx - movl 4(%edx),%esi - movl 8(%edx),%edi - movl 12(%edx),%ebp - movl 16(%edx),%ecx - movl %ecx,%esp - movl 20(%edx),%ecx + mov 4(%esp),%edx + mov 8(%esp),%eax + test %eax,%eax + jnz 1f + inc %eax +1: + mov (%edx),%ebx + mov 4(%edx),%esi + mov 8(%edx),%edi + mov 12(%edx),%ebp + mov 16(%edx),%ecx + mov %ecx,%esp + mov 20(%edx),%ecx jmp *%ecx .size _longjmp,.-_longjmp .size longjmp,.-longjmp -- cgit v1.2.1