diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-11-04 20:19:07 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-11-04 20:19:07 +0000 |
commit | 578a13e90fe4ca11ee9bc4e484c20248badb1b32 (patch) | |
tree | c1ef0b14a3fa88268d63e48e3f514d843956891c /libc/sysdeps/linux/sh/__longjmp.S | |
parent | 72029cf39b801314ff1cf562b9b0521439063bff (diff) |
Kill sysdep.h and fixup the SH asm to not use it.
-Erik
Diffstat (limited to 'libc/sysdeps/linux/sh/__longjmp.S')
-rw-r--r-- | libc/sysdeps/linux/sh/__longjmp.S | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/libc/sysdeps/linux/sh/__longjmp.S b/libc/sysdeps/linux/sh/__longjmp.S index 09f829ae3..9b785a300 100644 --- a/libc/sysdeps/linux/sh/__longjmp.S +++ b/libc/sysdeps/linux/sh/__longjmp.S @@ -17,14 +17,17 @@ 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> /* __longjmp(jmpbuf, val) */ -ENTRY (__longjmp) +.text +.align 5 +.type __longjmp,@function +.globl __longjmp; +__longjmp: mov.l @r4+, r8 mov.l @r4+, r9 mov.l @r4+, r10 @@ -41,4 +44,5 @@ ENTRY (__longjmp) 1: rts ldc.l @r4+, gbr -END (__longjmp) +.size __longjmp,.-__longjmp; + |