summaryrefslogtreecommitdiffstats
path: root/libc/sysdeps/linux/m68k/clone.S
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2006-06-18 04:05:21 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2006-06-18 04:05:21 +0000
commitca2c2e137185f214b4dfd81aa33f32cda030cde0 (patch)
tree2bff2b2866287ba9f33e4e19430bbfb61dc16d5c /libc/sysdeps/linux/m68k/clone.S
parentefc7900f4f03cb60559344c84e68e9da3127e8e3 (diff)
downloaduClibc-alpine-ca2c2e137185f214b4dfd81aa33f32cda030cde0.tar.bz2
uClibc-alpine-ca2c2e137185f214b4dfd81aa33f32cda030cde0.tar.xz
Merge from trunk.
Diffstat (limited to 'libc/sysdeps/linux/m68k/clone.S')
-rw-r--r--libc/sysdeps/linux/m68k/clone.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/sysdeps/linux/m68k/clone.S b/libc/sysdeps/linux/m68k/clone.S
index 2735bcba0..8ef916e91 100644
--- a/libc/sysdeps/linux/m68k/clone.S
+++ b/libc/sysdeps/linux/m68k/clone.S
@@ -21,11 +21,11 @@ clone:
movel 4(%sp), %d1 /* no NULL function pointers */
movel %d1, %a0
tstl %d1
- beq.w __syscall_error
+ jbeq __syscall_error
movel 8(%sp), %d1 /* no NULL stack pointers */
movel %d1, %a1
tstl %d1
- beq.w __syscall_error
+ jbeq __syscall_error
/* Allocate space and copy the argument onto the new stack. */
movel 16(%sp), -(%a1)
@@ -50,7 +50,7 @@ clone:
#endif
tstl %d0
- bmi.w __syscall_error
+ jbmi __syscall_error
beq.w thread_start
rts