diff options
author | Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> | 2008-04-24 07:08:48 +0000 |
---|---|---|
committer | Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> | 2008-04-24 07:08:48 +0000 |
commit | 76dc6857465109973ee79a8517ed27680289c36d (patch) | |
tree | de744555e38d43a8b09c667689d1bf099e0b6766 /libc/sysdeps/linux/avr32/setjmp.S | |
parent | 18f85730003544cb880641e0bb12b5901dfe1757 (diff) |
Fix whitespace damage in AVR32 in libc sysdeps AVR32 specific Linux files.
Diffstat (limited to 'libc/sysdeps/linux/avr32/setjmp.S')
-rw-r--r-- | libc/sysdeps/linux/avr32/setjmp.S | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/libc/sysdeps/linux/avr32/setjmp.S b/libc/sysdeps/linux/avr32/setjmp.S index 77f80d277..7d0354be9 100644 --- a/libc/sysdeps/linux/avr32/setjmp.S +++ b/libc/sysdeps/linux/avr32/setjmp.S @@ -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) |