summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/sh/setjmp.S
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-11-04 20:19:07 +0000
committerEric Andersen <andersen@codepoet.org>2002-11-04 20:19:07 +0000
commit578a13e90fe4ca11ee9bc4e484c20248badb1b32 (patch)
treec1ef0b14a3fa88268d63e48e3f514d843956891c /libc/sysdeps/linux/sh/setjmp.S
parent72029cf39b801314ff1cf562b9b0521439063bff (diff)
Kill sysdep.h and fixup the SH asm to not use it.
-Erik
Diffstat (limited to 'libc/sysdeps/linux/sh/setjmp.S')
-rw-r--r--libc/sysdeps/linux/sh/setjmp.S14
1 files changed, 6 insertions, 8 deletions
diff --git a/libc/sysdeps/linux/sh/setjmp.S b/libc/sysdeps/linux/sh/setjmp.S
index c263dc918..771b488bd 100644
--- a/libc/sysdeps/linux/sh/setjmp.S
+++ b/libc/sysdeps/linux/sh/setjmp.S
@@ -17,18 +17,15 @@
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
-#include <sysdep.h>
-
#define _SETJMP_H
#define _ASM
#include <bits/setjmp.h>
-ENTRY (__sigsetjmp)
-/*
- .globl __sigsetjmp
- .align 4
+.text
+.align 5
+.type __sigsetjmp,@function
+.globl __sigsetjmp;
__sigsetjmp:
-*/
/* Save registers */
add #(JB_SIZE-5*4), r4 /* this code doesn't do FP yet */
stc.l gbr, @-r4
@@ -49,4 +46,5 @@ __sigsetjmp:
.align 2
.L1:
.long __sigjmp_save
-END (__sigsetjmp)
+.size __sigsetjmp,.-__sigsetjmp;
+