diff options
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) |