diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-11-04 19:52:28 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-11-04 19:52:28 +0000 |
commit | 72029cf39b801314ff1cf562b9b0521439063bff (patch) | |
tree | 921d81ce54b061b10dc11e9f9ca76e7c26e5f1ad /libc/sysdeps/linux | |
parent | 818378f60823261cf8214ac42e636e036c167b54 (diff) |
Don't use ENTRY(), make the asm explicit
-Erik
Diffstat (limited to 'libc/sysdeps/linux')
-rw-r--r-- | libc/sysdeps/linux/sh/clone.S | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/sh/clone.S b/libc/sysdeps/linux/sh/clone.S index 95ae6647c..ed0357cbc 100644 --- a/libc/sysdeps/linux/sh/clone.S +++ b/libc/sysdeps/linux/sh/clone.S @@ -29,7 +29,11 @@ .text .extern __syscall_error -ENTRY(__clone) +.text +.align 5 +.type __clone,@function +.globl __clone; +__clone: /* sanity check arguments. */ tst r4, r4 bf/s 1f |