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/setjmp.s | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src/setjmp/i386/setjmp.s') diff --git a/src/setjmp/i386/setjmp.s b/src/setjmp/i386/setjmp.s index 6c078b10..89e614fa 100644 --- a/src/setjmp/i386/setjmp.s +++ b/src/setjmp/i386/setjmp.s @@ -7,16 +7,16 @@ __setjmp: _setjmp: setjmp: - movl 4(%esp), %eax - movl %ebx, (%eax) - movl %esi, 4(%eax) - movl %edi, 8(%eax) - movl %ebp, 12(%eax) - leal 4(%esp), %ecx - movl %ecx, 16(%eax) - movl (%esp), %ecx - movl %ecx, 20(%eax) - xorl %eax, %eax + mov 4(%esp), %eax + mov %ebx, (%eax) + mov %esi, 4(%eax) + mov %edi, 8(%eax) + mov %ebp, 12(%eax) + lea 4(%esp), %ecx + mov %ecx, 16(%eax) + mov (%esp), %ecx + mov %ecx, 20(%eax) + xor %eax, %eax ret .size __setjmp,.-__setjmp .size _setjmp,.-_setjmp -- cgit v1.2.1