diff options
author | Ondrej Bilka <neleai@seznam.cz> | 2013-06-06 19:36:03 +0200 |
---|---|---|
committer | Ondrej Bilka <neleai@seznam.cz> | 2013-06-06 20:36:07 +0200 |
commit | 350635a59a000fa4561d0d8bbe6814b4b9df530c (patch) | |
tree | ab4ec502e1944f8290eba1102ac210a3806b92a3 /sysdeps/i386/__longjmp.S | |
parent | 25506f09dda0d3d579d98971b3b12dd3e9e2fe8f (diff) | |
download | glibc-350635a59a000fa4561d0d8bbe6814b4b9df530c.tar.gz |
Fix leading whitespaces.
Diffstat (limited to 'sysdeps/i386/__longjmp.S')
-rw-r--r-- | sysdeps/i386/__longjmp.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/i386/__longjmp.S b/sysdeps/i386/__longjmp.S index 30a4013557..a0e7f41e3d 100644 --- a/sysdeps/i386/__longjmp.S +++ b/sysdeps/i386/__longjmp.S @@ -40,7 +40,7 @@ ENTRY (__longjmp) cfi_offset(%esi, JB_SI*4) cfi_offset(%edi, JB_DI*4) cfi_offset(%ebp, JB_BP*4) - /* Restore registers. */ + /* Restore registers. */ movl (JB_BX*4)(%eax), %ebx movl (JB_SI*4)(%eax), %esi movl (JB_DI*4)(%eax), %edi @@ -59,7 +59,7 @@ ENTRY (__longjmp) /* Save the return address now. */ movl (JB_PC*4)(%ecx), %edx LIBC_PROBE (longjmp, 3, 4@%ecx, -4@%eax, 4@%edx) - /* Restore registers. */ + /* Restore registers. */ movl (JB_BX*4)(%ecx), %ebx movl (JB_SI*4)(%ecx), %esi movl (JB_DI*4)(%ecx), %edi @@ -68,5 +68,5 @@ ENTRY (__longjmp) LIBC_PROBE (longjmp_target, 3, 4@%ecx, -4@%ecx, 4@%edx) #endif /* Jump to saved PC. */ - jmp *%edx + jmp *%edx END (__longjmp) |