about summary refs log tree commit diff
path: root/sysdeps/i386
diff options
context:
space:
mode:
authorOndrej Bilka <neleai@seznam.cz>2013-06-06 19:36:03 +0200
committerOndrej Bilka <neleai@seznam.cz>2013-06-06 20:36:07 +0200
commit350635a59a000fa4561d0d8bbe6814b4b9df530c (patch)
treeab4ec502e1944f8290eba1102ac210a3806b92a3 /sysdeps/i386
parent25506f09dda0d3d579d98971b3b12dd3e9e2fe8f (diff)
downloadglibc-350635a59a000fa4561d0d8bbe6814b4b9df530c.tar.gz
glibc-350635a59a000fa4561d0d8bbe6814b4b9df530c.tar.xz
glibc-350635a59a000fa4561d0d8bbe6814b4b9df530c.zip
Fix leading whitespaces.
Diffstat (limited to 'sysdeps/i386')
-rw-r--r--sysdeps/i386/__longjmp.S6
-rw-r--r--sysdeps/i386/bsd-_setjmp.S6
-rw-r--r--sysdeps/i386/bsd-setjmp.S6
-rw-r--r--sysdeps/i386/setjmp.S6
4 files changed, 12 insertions, 12 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)
diff --git a/sysdeps/i386/bsd-_setjmp.S b/sysdeps/i386/bsd-_setjmp.S
index 54483fea56..5c35d76383 100644
--- a/sysdeps/i386/bsd-_setjmp.S
+++ b/sysdeps/i386/bsd-_setjmp.S
@@ -33,7 +33,7 @@ ENTRY (_setjmp)
 	xorl %eax, %eax
 	movl JMPBUF(%esp), %edx
 
-     	/* Save registers.  */
+	/* Save registers.  */
 	movl %ebx, (JB_BX*4)(%edx)
 	movl %esi, (JB_SI*4)(%edx)
 	movl %edi, (JB_DI*4)(%edx)
@@ -41,13 +41,13 @@ ENTRY (_setjmp)
 #ifdef PTR_MANGLE
 	PTR_MANGLE (%ecx)
 #endif
-     	movl %ecx, (JB_SP*4)(%edx)
+	movl %ecx, (JB_SP*4)(%edx)
 	movl 0(%esp), %ecx	/* Save PC we are returning to now.  */
 	LIBC_PROBE (setjmp, 3, 4@%edx, -4@$0, 4@%ecx)
 #ifdef PTR_MANGLE
 	PTR_MANGLE (%ecx)
 #endif
-     	movl %ecx, (JB_PC*4)(%edx)
+	movl %ecx, (JB_PC*4)(%edx)
 	movl %ebp, (JB_BP*4)(%edx) /* Save caller's frame pointer.  */
 
 	movl %eax, JB_SIZE(%edx) /* No signal mask set.  */
diff --git a/sysdeps/i386/bsd-setjmp.S b/sysdeps/i386/bsd-setjmp.S
index b6daa8c036..803d48ccd6 100644
--- a/sysdeps/i386/bsd-setjmp.S
+++ b/sysdeps/i386/bsd-setjmp.S
@@ -35,7 +35,7 @@ ENTRY (setjmp)
 
 	movl JMPBUF(%esp), %eax
 
-     	/* Save registers.  */
+	/* Save registers.  */
 	movl %ebx, (JB_BX*4)(%eax)
 	movl %esi, (JB_SI*4)(%eax)
 	movl %edi, (JB_DI*4)(%eax)
@@ -43,13 +43,13 @@ ENTRY (setjmp)
 #ifdef PTR_MANGLE
 	PTR_MANGLE (%ecx)
 #endif
-     	movl %ecx, (JB_SP*4)(%eax)
+	movl %ecx, (JB_SP*4)(%eax)
 	movl 0(%esp), %ecx	/* Save PC we are returning to now.  */
 	LIBC_PROBE (setjmp, 3, 4@%eax, -4@$1, 4@%ecx)
 #ifdef PTR_MANGLE
 	PTR_MANGLE (%ecx)
 #endif
-     	movl %ecx, (JB_PC*4)(%eax)
+	movl %ecx, (JB_PC*4)(%eax)
 	movl %ebp, (JB_BP*4)(%eax) /* Save caller's frame pointer.  */
 
 	/* Call __sigjmp_save.  */
diff --git a/sysdeps/i386/setjmp.S b/sysdeps/i386/setjmp.S
index 039f6c4fa3..14d36c7e40 100644
--- a/sysdeps/i386/setjmp.S
+++ b/sysdeps/i386/setjmp.S
@@ -29,7 +29,7 @@ ENTRY (__sigsetjmp)
 
 	movl JMPBUF(%esp), %eax
 
-     	/* Save registers.  */
+	/* Save registers.  */
 	movl %ebx, (JB_BX*4)(%eax)
 	movl %esi, (JB_SI*4)(%eax)
 	movl %edi, (JB_DI*4)(%eax)
@@ -37,13 +37,13 @@ ENTRY (__sigsetjmp)
 #ifdef PTR_MANGLE
 	PTR_MANGLE (%ecx)
 #endif
-     	movl %ecx, (JB_SP*4)(%eax)
+	movl %ecx, (JB_SP*4)(%eax)
 	movl 0(%esp), %ecx	/* Save PC we are returning to now.  */
 	LIBC_PROBE (setjmp, 3, 4@%eax, -4@SIGMSK(%esp), 4@%ecx)
 #ifdef PTR_MANGLE
 	PTR_MANGLE (%ecx)
 #endif
-     	movl %ecx, (JB_PC*4)(%eax)
+	movl %ecx, (JB_PC*4)(%eax)
 	movl %ebp, (JB_BP*4)(%eax) /* Save caller's frame pointer.  */
 
 #if defined NOT_IN_libc && defined IS_IN_rtld