From f4680b57eda711058e7d68b3075c78b9be8dcaf0 Mon Sep 17 00:00:00 2001 From: Bruce Beare Date: Thu, 27 Jan 2011 10:25:33 -0800 Subject: [PATCH] Remove an extra register move. Change-Id: I63c217b73203b44b1a2e74950b58f2ec12989cab Author: H.J. Lu Signed-off-by: Bruce Beare --- libc/arch-x86/bionic/clone.S | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libc/arch-x86/bionic/clone.S b/libc/arch-x86/bionic/clone.S index 44fce1e4a..b9b0957f6 100644 --- a/libc/arch-x86/bionic/clone.S +++ b/libc/arch-x86/bionic/clone.S @@ -20,8 +20,7 @@ __pthread_clone: movl %eax, -12(%ecx) movl 24(%esp), %eax movl %eax, -8(%ecx) - lea (%ecx), %eax - movl %eax, -4(%ecx) + movl %ecx, -4(%ecx) movl $__NR_clone, %eax int $0x80