about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-12-15 09:14:28 +0000
committerUlrich Drepper <drepper@redhat.com>2004-12-15 09:14:28 +0000
commitf05a41ebd3865694bfec31b385f661d23272296f (patch)
tree2d02109a644bb005c0412849d7b062ce5b09e834
parent91b416b509056dc76eab97bc141cf835255aacfd (diff)
downloadglibc-f05a41ebd3865694bfec31b385f661d23272296f.tar.gz
glibc-f05a41ebd3865694bfec31b385f661d23272296f.tar.xz
glibc-f05a41ebd3865694bfec31b385f661d23272296f.zip
.I think this code is more correct.
-rw-r--r--sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S b/sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S
index be069c90c8..61a35a2f79 100644
--- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S
+++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S
@@ -92,9 +92,9 @@ ENTRY (BP_SYM (__clone))
 	mr	r1,r30
 
 #ifdef RESET_PID
-	andis.	r0,r28,1	/* This is & CLONE_THREAD */
+	rldicl.	r0,r28,48,63	/* This is & CLONE_THREAD */
 	bne+	r0,L(oldpid)
-	andi.	r0,r28,CLONE_VM
+	rldicl.	r0,r28,56,63	/* This is & CLONE_VM */
 	li	r3,-1
 	bne-	r0,L(nomoregetpid)
 	DO_CALL(SYS_ify(getpid))