svn commit: trunk/uClibc/libc/sysdeps/linux/avr32

egtvedt at uclibc.org egtvedt at uclibc.org
Thu Apr 24 07:08:49 UTC 2008


Author: egtvedt
Date: 2008-04-24 00:08:48 -0700 (Thu, 24 Apr 2008)
New Revision: 21817

Log:
Fix whitespace damage in AVR32 in libc sysdeps AVR32 specific Linux files.


Modified:
   trunk/uClibc/libc/sysdeps/linux/avr32/Makefile.arch
   trunk/uClibc/libc/sysdeps/linux/avr32/__longjmp.S
   trunk/uClibc/libc/sysdeps/linux/avr32/brk.c
   trunk/uClibc/libc/sysdeps/linux/avr32/bsd-_setjmp.S
   trunk/uClibc/libc/sysdeps/linux/avr32/bsd-setjmp.S
   trunk/uClibc/libc/sysdeps/linux/avr32/clone.c
   trunk/uClibc/libc/sysdeps/linux/avr32/crt1.S
   trunk/uClibc/libc/sysdeps/linux/avr32/crti.S
   trunk/uClibc/libc/sysdeps/linux/avr32/crtn.S
   trunk/uClibc/libc/sysdeps/linux/avr32/mmap.c
   trunk/uClibc/libc/sysdeps/linux/avr32/setjmp.S
   trunk/uClibc/libc/sysdeps/linux/avr32/sigaction.c
   trunk/uClibc/libc/sysdeps/linux/avr32/sigrestorer.S
   trunk/uClibc/libc/sysdeps/linux/avr32/syscall.S
   trunk/uClibc/libc/sysdeps/linux/avr32/vfork.S


Changeset:
Modified: trunk/uClibc/libc/sysdeps/linux/avr32/Makefile.arch
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/avr32/Makefile.arch	2008-04-24 07:08:15 UTC (rev 21816)
+++ trunk/uClibc/libc/sysdeps/linux/avr32/Makefile.arch	2008-04-24 07:08:48 UTC (rev 21817)
@@ -5,9 +5,9 @@
 # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
 #
 
-CSRC   := brk.c clone.c mmap.c sigaction.c
+CSRC	:= brk.c clone.c mmap.c sigaction.c
 
-SSRC   := __longjmp.S setjmp.S bsd-setjmp.S bsd-_setjmp.S      \
-               sigrestorer.S syscall.S vfork.S
+SSRC	:= __longjmp.S setjmp.S bsd-setjmp.S bsd-_setjmp.S	\
+		sigrestorer.S syscall.S vfork.S
 
 include $(top_srcdir)/libc/sysdeps/linux/Makefile.commonarch

Modified: trunk/uClibc/libc/sysdeps/linux/avr32/__longjmp.S
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/avr32/__longjmp.S	2008-04-24 07:08:15 UTC (rev 21816)
+++ trunk/uClibc/libc/sysdeps/linux/avr32/__longjmp.S	2008-04-24 07:08:48 UTC (rev 21817)
@@ -6,16 +6,16 @@
  * archive for more details.
  */
 
-       .global __longjmp
-       .type   __longjmp,"function"
-       .align  1
+	.global	__longjmp
+	.type	__longjmp,"function"
+	.align	1
 __longjmp:
-       ldm     r12++, r0-r8,sp,lr
-       mustr   r8              /* restore status register (lower half) */
-       cp      r11, 0          /* can't return zero */
-       frs
-       moveq   r11, 1
-       retal   r11
-       .size   __longjmp, . - __longjmp
+	ldm	r12++, r0-r8,sp,lr
+	mustr	r8		/* restore status register (lower half) */
+	cp	r11, 0		/* can't return zero */
+	frs
+	moveq	r11, 1
+	retal	r11
+	.size	__longjmp, . - __longjmp
 
 libc_hidden_def(__longjmp)

Modified: trunk/uClibc/libc/sysdeps/linux/avr32/brk.c
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/avr32/brk.c	2008-04-24 07:08:15 UTC (rev 21816)
+++ trunk/uClibc/libc/sysdeps/linux/avr32/brk.c	2008-04-24 07:08:48 UTC (rev 21817)
@@ -15,17 +15,17 @@
 
 int brk (void *addr)
 {
-       void *newbrk;
+	void *newbrk;
 
-       newbrk = (void *)INLINE_SYSCALL(brk, 1, addr);
+	newbrk = (void *)INLINE_SYSCALL(brk, 1, addr);
 
-       __curbrk = newbrk;
+	__curbrk = newbrk;
 
-       if (newbrk < addr) {
-               __set_errno (ENOMEM);
-               return -1;
-       }
+	if (newbrk < addr) {
+		__set_errno (ENOMEM);
+		return -1;
+	}
 
-       return 0;
+	return 0;
 }
 libc_hidden_def(brk)

Modified: trunk/uClibc/libc/sysdeps/linux/avr32/bsd-_setjmp.S
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/avr32/bsd-_setjmp.S	2008-04-24 07:08:15 UTC (rev 21816)
+++ trunk/uClibc/libc/sysdeps/linux/avr32/bsd-_setjmp.S	2008-04-24 07:08:48 UTC (rev 21817)
@@ -6,11 +6,11 @@
  * archive for more details.
  */
 
-       /* This just does a tail-call to __sigsetjmp(env, 0) */
-       .global _setjmp
-       .type   _setjmp,"function"
-       .align  1
+	/* This just does a tail-call to __sigsetjmp(env, 0) */
+	.global	_setjmp
+	.type	_setjmp,"function"
+	.align	1
 _setjmp:
-       mov     r11, 0
-       bral    HIDDEN_JUMPTARGET(__sigsetjmp)
-       .size   _setjmp, . - _setjmp
+	mov	r11, 0
+	bral	HIDDEN_JUMPTARGET(__sigsetjmp)
+	.size	_setjmp, . - _setjmp

Modified: trunk/uClibc/libc/sysdeps/linux/avr32/bsd-setjmp.S
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/avr32/bsd-setjmp.S	2008-04-24 07:08:15 UTC (rev 21816)
+++ trunk/uClibc/libc/sysdeps/linux/avr32/bsd-setjmp.S	2008-04-24 07:08:48 UTC (rev 21817)
@@ -6,11 +6,11 @@
  * archive for more details.
  */
 
-       /* This just does a tail-call to __sigsetjmp(env, 1) */
-       .global setjmp
-       .type   setjmp,"function"
-       .align  1
+	/* This just does a tail-call to __sigsetjmp(env, 1) */
+	.global	setjmp
+	.type	setjmp,"function"
+	.align	1
 setjmp:
-       mov     r11, 1
-       bral    HIDDEN_JUMPTARGET(__sigsetjmp)
-       .size   setjmp, . - setjmp
+	mov	r11, 1
+	bral	HIDDEN_JUMPTARGET(__sigsetjmp)
+	.size	setjmp, . - setjmp

Modified: trunk/uClibc/libc/sysdeps/linux/avr32/clone.c
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/avr32/clone.c	2008-04-24 07:08:15 UTC (rev 21816)
+++ trunk/uClibc/libc/sysdeps/linux/avr32/clone.c	2008-04-24 07:08:48 UTC (rev 21817)
@@ -16,26 +16,26 @@
  */
 int clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg)
 {
-       register int (*_fn)(void *arg) = fn;
-       register void *_arg = arg;
-       int err;
+	register int (*_fn)(void *arg) = fn;
+	register void *_arg = arg;
+	int err;
 
-       /* Sanity check the arguments */
-       err = -EINVAL;
-       if (!fn)
-               goto syscall_error;
-       if (!child_stack)
-               goto syscall_error;
+	/* Sanity check the arguments */
+	err = -EINVAL;
+	if (!fn)
+		goto syscall_error;
+	if (!child_stack)
+		goto syscall_error;
 
-       err = INLINE_SYSCALL(clone, 2, flags, child_stack);
-       if (err < 0)
-               goto syscall_error;
-       else if (err != 0)
-               return err;
+	err = INLINE_SYSCALL(clone, 2, flags, child_stack);
+	if (err < 0)
+		goto syscall_error;
+	else if (err != 0)
+		return err;
 
-       _exit(_fn(_arg));
+	_exit(_fn(_arg));
 
 syscall_error:
-       __set_errno (-err);
-       return -1;
+	__set_errno (-err);
+	return -1;
 }

Modified: trunk/uClibc/libc/sysdeps/linux/avr32/crt1.S
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/avr32/crt1.S	2008-04-24 07:08:15 UTC (rev 21816)
+++ trunk/uClibc/libc/sysdeps/linux/avr32/crt1.S	2008-04-24 07:08:48 UTC (rev 21817)
@@ -6,12 +6,12 @@
  * archive for more details.
  *
  * When we enter _start, the stack looks like this:
- *     argc            argument counter
- *     argv[0]         pointer to program name
- *     argv[1..argc-1] pointers to program args
- *     NULL
- *     env[0..N]       pointers to environment variables
- *     NULL
+ *	argc		argument counter
+ *	argv[0]		pointer to program name
+ *	argv[1..argc-1]	pointers to program args
+ *	NULL
+ *	env[0..N]	pointers to environment variables
+ *	NULL
  *
  * r12 contains a function pointer to be registered with `atexit'.
  * This is how the dynamic linker arranges to have DT_FINI functions
@@ -20,78 +20,78 @@
  *
  * We're going to call the following function:
  * __uClibc_main(int (*main)(int, char **, char **), int argc,
- *              char **argv, void (*app_init)(void), void (*app_fini)(void),
- *              void (*rtld_fini)(void), void *stack_end)
+ *		 char **argv, void (*app_init)(void), void (*app_fini)(void),
+ *		 void (*rtld_fini)(void), void *stack_end)
  *
  * So we need to set up things as follows:
- *     r12 = address of main
- *     r11 = argc
- *     r10 = &argv[0]
- *     r9  = address of _init
- *     r8  = address of _fini
- *     sp[0] = whatever we got passed in r12
+ *	r12 = address of main
+ *	r11 = argc
+ *	r10 = &argv[0]
+ *	r9  = address of _init
+ *	r8  = address of _fini
+ *	sp[0] = whatever we got passed in r12
  */
 
 #include <features.h>
 
-       .text
-       .global _start
-       .type   _start, @function
+	.text
+	.global _start
+	.type	_start, @function
 _start:
-       /* Clear the frame pointer and link register since this is the outermost frame.  */
-       mov     r7, 0
-       mov     lr, 0
+	/* Clear the frame pointer and link register since this is the outermost frame.  */
+	mov	r7, 0
+	mov	lr, 0
 
-       ld.w    r11, sp++               /* argc         */
-       mov     r10, sp                 /* &argv[0]     */
+	ld.w	r11, sp++		/* argc		*/
+	mov	r10, sp			/* &argv[0]	*/
 
-       st.w    --sp, r10               /* stack_end */
-       st.w    --sp, r12               /* rtld_fini */
+	st.w	--sp, r10		/* stack_end */
+	st.w	--sp, r12		/* rtld_fini */
 
 #ifdef __PIC__
-       lddpc   r6, .L_GOT
+	lddpc	r6, .L_GOT
 .L_RGOT:
-       rsub    r6, pc
-       lda.w   r9, _init
-       lda.w   r8, _fini
-       lda.w   r12, main
+	rsub	r6, pc
+	lda.w	r9, _init
+	lda.w	r8, _fini
+	lda.w	r12, main
 
-       /* Ok, now run uClibc's main() -- should not return */
-       call    __uClibc_main
+	/* Ok, now run uClibc's main() -- should not return */
+	call	__uClibc_main
 
-       .align  2
+	.align	2
 .L_GOT:
-       .long   .L_RGOT - _GLOBAL_OFFSET_TABLE_
+	.long	.L_RGOT - _GLOBAL_OFFSET_TABLE_
 #else
-       lddpc   r9, __init_addr         /* app_init */
-       lddpc   r8, __fini_addr         /* app_fini */
-       lddpc   r12, __main_addr        /* main */
+	lddpc	r9, __init_addr		/* app_init */
+	lddpc	r8, __fini_addr		/* app_fini */
+	lddpc	r12, __main_addr	/* main */
 
-       /* Ok, now run uClibc's main() -- should not return */
-       lddpc   pc, ___uClibc_main_addr
+	/* Ok, now run uClibc's main() -- should not return */
+	lddpc	pc, ___uClibc_main_addr
 
-       .align  2
+	.align	2
 __init_addr:
-       .long   _init
+	.long	_init
 __fini_addr:
-       .long   _fini
+	.long	_fini
 __main_addr:
-       .long   main
+	.long	main
 ___uClibc_main_addr:
-       .long   __uClibc_main
+	.long	__uClibc_main
 #endif
-       .size   _start, . - _start
+	.size	_start, . - _start
 
-       /*
-        * The LSB says we need this.
-        */
-       .section ".note.ABI-tag", "a"
-       .align  4
-       .long   2f - 1f         /* namesz */
-       .long   4f - 3f         /* descsz */
-       .long   1               /* type   */
-1:     .asciz  "GNU"           /* name */
-2:     .align  4
-3:     .long   0               /* Linux executable */
-       .long   2,6,0           /* Earliest compatible kernel */
-4:     .align  4
+	/*
+	 * The LSB says we need this.
+	 */
+	.section ".note.ABI-tag", "a"
+	.align	4
+	.long	2f - 1f		/* namesz */
+	.long	4f - 3f		/* descsz */
+	.long	1		/* type   */
+1:	.asciz	"GNU"		/* name */
+2:	.align	4
+3:	.long	0		/* Linux executable */
+	.long	2,6,0		/* Earliest compatible kernel */
+4:	.align	4

Modified: trunk/uClibc/libc/sysdeps/linux/avr32/crti.S
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/avr32/crti.S	2008-04-24 07:08:15 UTC (rev 21816)
+++ trunk/uClibc/libc/sysdeps/linux/avr32/crti.S	2008-04-24 07:08:48 UTC (rev 21817)
@@ -1,26 +1,26 @@
 
-       .section .init
-       .align  2
-       .global _init
-       .type   _init, @function
+	.section .init
+	.align	2
+	.global	_init
+	.type	_init, @function
 _init:
-       stm     --sp, r6, lr
-       lddpc   r6, 2f
-1:     rsub    r6, pc
-       rjmp    3f
-       .align  2
-2:     .long   1b - _GLOBAL_OFFSET_TABLE_
+	stm	--sp, r6, lr
+	lddpc	r6, 2f
+1:	rsub	r6, pc
+	rjmp	3f
+	.align	2
+2:	.long	1b - _GLOBAL_OFFSET_TABLE_
 3:
 
-       .section .fini
-       .align  2
-       .global _fini
-       .type   _fini, @function
+	.section .fini
+	.align	2
+	.global	_fini
+	.type	_fini, @function
 _fini:
-       stm     --sp, r6, lr
-       lddpc   r6, 2f
-1:     rsub    r6, pc
-       rjmp    3f
-       .align  2
-2:     .long   1b - _GLOBAL_OFFSET_TABLE_
+	stm	--sp, r6, lr
+	lddpc	r6, 2f
+1:	rsub	r6, pc
+	rjmp	3f
+	.align	2
+2:	.long	1b - _GLOBAL_OFFSET_TABLE_
 3:

Modified: trunk/uClibc/libc/sysdeps/linux/avr32/crtn.S
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/avr32/crtn.S	2008-04-24 07:08:15 UTC (rev 21816)
+++ trunk/uClibc/libc/sysdeps/linux/avr32/crtn.S	2008-04-24 07:08:48 UTC (rev 21817)
@@ -1,14 +1,14 @@
 
-       .section .init
-       .align  2
-       .global _init
-       .type   _init, @function
-       ldm     sp++, r6, pc
-       .size   _init, . - _init
+	.section .init
+	.align	2
+	.global	_init
+	.type	_init, @function
+	ldm	sp++, r6, pc
+	.size	_init, . - _init
 
-       .section .fini
-       .align  2
-       .global _fini
-       .type   _fini, @function
-       ldm     sp++, r6, pc
-       .size   _fini, . - _fini
+	.section .fini
+	.align	2
+	.global _fini
+	.type	_fini, @function
+	ldm	sp++, r6, pc
+	.size	_fini, . - _fini

Modified: trunk/uClibc/libc/sysdeps/linux/avr32/mmap.c
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/avr32/mmap.c	2008-04-24 07:08:15 UTC (rev 21816)
+++ trunk/uClibc/libc/sysdeps/linux/avr32/mmap.c	2008-04-24 07:08:48 UTC (rev 21817)
@@ -14,20 +14,20 @@
 libc_hidden_proto(mmap)
 
 static _syscall6(__ptr_t, mmap2, __ptr_t, addr, size_t, len, int, prot,
-                int, flags, int, fd, __off_t, pgoff);
+		 int, flags, int, fd, __off_t, pgoff);
 
 __ptr_t mmap(__ptr_t addr, size_t len, int prot, int flags, int fd, __off_t offset)
 {
-       unsigned long page_size = sysconf(_SC_PAGESIZE);
-       unsigned long pgoff;
+	unsigned long page_size = sysconf(_SC_PAGESIZE);
+	unsigned long pgoff;
 
-       if (offset & (page_size - 1)) {
-               __set_errno(EINVAL);
-               return MAP_FAILED;
-       }
+	if (offset & (page_size - 1)) {
+		__set_errno(EINVAL);
+		return MAP_FAILED;
+	}
 
-       pgoff = (unsigned long)offset >> (31 - __builtin_clz(page_size));
+	pgoff = (unsigned long)offset >> (31 - __builtin_clz(page_size));
 
-       return mmap2(addr, len, prot, flags, fd, pgoff);
+	return mmap2(addr, len, prot, flags, fd, pgoff);
 }
 libc_hidden_def(mmap)

Modified: trunk/uClibc/libc/sysdeps/linux/avr32/setjmp.S
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/avr32/setjmp.S	2008-04-24 07:08:15 UTC (rev 21816)
+++ trunk/uClibc/libc/sysdeps/linux/avr32/setjmp.S	2008-04-24 07:08:48 UTC (rev 21817)
@@ -9,21 +9,21 @@
 #define _ASM
 #include <bits/setjmp.h>
 
-       .text
+	.text
 
-       .global __sigsetjmp
-       .type   __sigsetjmp,"function"
+	.global	__sigsetjmp
+	.type	__sigsetjmp,"function"
 
-       .align  1
+	.align	1
 __sigsetjmp:
-       mustr   r8
-       stm     r12, r0,r1,r2,r3,r4,r5,r6,r7,r8,sp,lr
+	mustr	r8
+	stm	r12, r0,r1,r2,r3,r4,r5,r6,r7,r8,sp,lr
 
-       /*
-        * Make a tail call to __sigjmp_save; it takes the same args
-        * and is hidden so we don't need to mess around with the GOT.
-        */
-       rjmp    __sigjmp_save
-       .size   __sigsetjmp, . - __sigsetjmp
+	/*
+	 * Make a tail call to __sigjmp_save; it takes the same args
+	 * and is hidden so we don't need to mess around with the GOT.
+	 */
+	rjmp	__sigjmp_save
+	.size	__sigsetjmp, . - __sigsetjmp
 
 libc_hidden_def(__sigsetjmp)

Modified: trunk/uClibc/libc/sysdeps/linux/avr32/sigaction.c
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/avr32/sigaction.c	2008-04-24 07:08:15 UTC (rev 21816)
+++ trunk/uClibc/libc/sysdeps/linux/avr32/sigaction.c	2008-04-24 07:08:48 UTC (rev 21817)
@@ -11,7 +11,7 @@
 #include <sys/syscall.h>
 #include <bits/kernel_sigaction.h>
 
-#define SA_RESTORER    0x04000000
+#define SA_RESTORER	0x04000000
 extern void __default_rt_sa_restorer(void);
 
 libc_hidden_proto(memcpy)
@@ -21,35 +21,35 @@
  * If oact is not NULL, put the old action for sig in *oact.
  */
 int __libc_sigaction(int signum, const struct sigaction *act,
-                    struct sigaction *oldact)
+		     struct sigaction *oldact)
 {
-       struct kernel_sigaction kact, koact;
-       int result;
+	struct kernel_sigaction kact, koact;
+	int result;
 
-       if (act) {
-               kact.k_sa_handler = act->sa_handler;
-               memcpy(&kact.sa_mask, &act->sa_mask, sizeof (kact.sa_mask));
-               kact.sa_flags = act->sa_flags;
-               if (kact.sa_flags & SA_RESTORER)
-                       kact.sa_restorer = act->sa_restorer;
-               else
-                       kact.sa_restorer = __default_rt_sa_restorer;
-               kact.sa_flags |= SA_RESTORER;
-       }
+	if (act) {
+		kact.k_sa_handler = act->sa_handler;
+		memcpy(&kact.sa_mask, &act->sa_mask, sizeof (kact.sa_mask));
+		kact.sa_flags = act->sa_flags;
+		if (kact.sa_flags & SA_RESTORER)
+			kact.sa_restorer = act->sa_restorer;
+		else
+			kact.sa_restorer = __default_rt_sa_restorer;
+		kact.sa_flags |= SA_RESTORER;
+	}
 
-       result = __syscall_rt_sigaction(signum, act ? __ptrvalue(&kact) : NULL,
-                                       oldact ? __ptrvalue(&koact) : NULL,
-                                       _NSIG / 8);
+	result = __syscall_rt_sigaction(signum, act ? __ptrvalue(&kact) : NULL,
+					oldact ? __ptrvalue(&koact) : NULL,
+					_NSIG / 8);
 
-       if (oldact && result >= 0) {
-               oldact->sa_handler = koact.k_sa_handler;
-               memcpy(&oldact->sa_mask, &koact.sa_mask,
-                      sizeof(oldact->sa_mask));
-               oldact->sa_flags = koact.sa_flags;
-               oldact->sa_restorer = koact.sa_restorer;
-       }
+	if (oldact && result >= 0) {
+		oldact->sa_handler = koact.k_sa_handler;
+		memcpy(&oldact->sa_mask, &koact.sa_mask,
+		       sizeof(oldact->sa_mask));
+		oldact->sa_flags = koact.sa_flags;
+		oldact->sa_restorer = koact.sa_restorer;
+	}
 
-       return result;
+	return result;
 }
 
 #ifndef LIBC_SIGACTION

Modified: trunk/uClibc/libc/sysdeps/linux/avr32/sigrestorer.S
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/avr32/sigrestorer.S	2008-04-24 07:08:15 UTC (rev 21816)
+++ trunk/uClibc/libc/sysdeps/linux/avr32/sigrestorer.S	2008-04-24 07:08:48 UTC (rev 21817)
@@ -7,9 +7,9 @@
  */
 #include <sys/syscall.h>
 
-       .global __default_rt_sa_restorer
-       .type   __default_rt_sa_restorer,"function"
-       .align  1
+	.global	__default_rt_sa_restorer
+	.type	__default_rt_sa_restorer,"function"
+	.align	1
 __default_rt_sa_restorer:
-       mov     r8, __NR_rt_sigreturn
-       scall
+	mov	r8, __NR_rt_sigreturn
+	scall

Modified: trunk/uClibc/libc/sysdeps/linux/avr32/syscall.S
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/avr32/syscall.S	2008-04-24 07:08:15 UTC (rev 21816)
+++ trunk/uClibc/libc/sysdeps/linux/avr32/syscall.S	2008-04-24 07:08:48 UTC (rev 21817)
@@ -7,65 +7,65 @@
  */
 #include <features.h>
 
-       .text
+	.text
 
-       /*
-        * long int syscall(long int sysno, ...)
-        */
-       .global syscall
-       .type   syscall, @function
-       .align  2
+	/*
+	 * long int syscall(long int sysno, ...)
+	 */
+	.global	syscall
+	.type	syscall, @function
+	.align	2
 syscall:
-       stm     --sp, r3,r5,r6,lr
-       sub     lr, sp, -16
-       mov     r8, r12
-       ldm     lr, r3,r5,r9-r12
-       scall
-       cp.w    r12, -4095
-       brlo    .Ldone
+	stm	--sp, r3,r5,r6,lr
+	sub	lr, sp, -16
+	mov	r8, r12
+	ldm	lr, r3,r5,r9-r12
+	scall
+	cp.w	r12, -4095
+	brlo	.Ldone
 
 #ifdef __PIC__
-       lddpc   r6, .Lgot
+	lddpc	r6, .Lgot
 .Lgotcalc:
-       rsub    r6, pc
+	rsub	r6, pc
 # ifdef __UCLIBC_HAS_THREADS__
-       rsub    r3, r12, 0
-       mcall   r6[__errno_location at got]
-       st.w    r12[0], r3
+	rsub	r3, r12, 0
+	mcall	r6[__errno_location at got]
+	st.w	r12[0], r3
 # else
-       ld.w    r3, r6[errno at got]
-       neg     r12
-       st.w    r3[0], r12
+	ld.w	r3, r6[errno at got]
+	neg	r12
+	st.w	r3[0], r12
 # endif
 #else
 # ifdef __UCLIBC_HAS_THREADS__
-       rsub    r3, r12, 0
-       mcall   .Lerrno_location
-       st.w    r12[0], r3
+	rsub	r3, r12, 0
+	mcall	.Lerrno_location
+	st.w	r12[0], r3
 # else
-       lddpc   r3, .Lerrno
-       neg     r12
-       st.w    r3[0], r12
+	lddpc	r3, .Lerrno
+	neg	r12
+	st.w	r3[0], r12
 # endif
 #endif
-       mov     r12, -1
+	mov	r12, -1
 
 .Ldone:
-       ldm     sp++, r3,r5,r6,pc
+	ldm	sp++, r3,r5,r6,pc
 
-       .align  2
+	.align	2
 #ifdef __PIC__
 .Lgot:
-       .long   .Lgotcalc - _GLOBAL_OFFSET_TABLE_
+	.long	.Lgotcalc - _GLOBAL_OFFSET_TABLE_
 #else
 # ifdef __UCLIBC_HAS_THREADS__
 .Lerrno_location:
-       .long   __errno_location
+	.long	__errno_location
 # else
 .Lerrno:
-       .long   errno
+	.long	errno
 # endif
 #endif
 
 
-       .size   syscall, . - syscall
+	.size	syscall, . - syscall

Modified: trunk/uClibc/libc/sysdeps/linux/avr32/vfork.S
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/avr32/vfork.S	2008-04-24 07:08:15 UTC (rev 21816)
+++ trunk/uClibc/libc/sysdeps/linux/avr32/vfork.S	2008-04-24 07:08:48 UTC (rev 21817)
@@ -20,39 +20,39 @@
 #include <features.h>
 #include <sys/syscall.h>
 
-       .global __vfork
-       .type   __vfork, at function
-       .align  1
+	.global	__vfork
+	.type	__vfork, at function
+	.align	1
 __vfork:
-       mov     r8, __NR_vfork
-       scall
-       cp.w    r12, -4096
-       retls   r12
+	mov	r8, __NR_vfork
+	scall
+	cp.w	r12, -4096
+	retls	r12
 
-       /* vfork failed, so we may use the stack freely */
-       pushm   r4-r7,lr
+	/* vfork failed, so we may use the stack freely */
+	pushm	r4-r7,lr
 #ifdef __PIC__
-       lddpc   r6, .L_GOT
-       rsub    r4, r12, 0
+	lddpc	r6, .L_GOT
+	rsub	r4, r12, 0
 .L_RGOT:
-       rsub    r6, pc
-       mcall   r6[__errno_location at got]
+	rsub	r6, pc
+	mcall	r6[__errno_location at got]
 #else
-       rsub    r4, r12, 0
-       mcall   .L__errno_location
+	rsub	r4, r12, 0
+	mcall	.L__errno_location
 #endif
-       st.w    r12[0], r4
-       popm    r4-r7,pc,r12=-1
+	st.w	r12[0], r4
+	popm	r4-r7,pc,r12=-1
 
-       .align  2
+	.align	2
 #ifdef __PIC__
 .L_GOT:
-       .long   .L_RGOT - _GLOBAL_OFFSET_TABLE_
+	.long	.L_RGOT - _GLOBAL_OFFSET_TABLE_
 #else
 .L__errno_location:
-       .long   __errno_location
+	.long	__errno_location
 #endif
-       .size   __vfork, . - __vfork
+	.size	__vfork, . - __vfork
 
 weak_alias(__vfork,vfork)
 libc_hidden_weak(vfork)




More information about the uClibc-cvs mailing list