diff options
author | David Turner <digit@android.com> | 2011-02-07 13:51:27 -0800 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2011-02-07 13:51:27 -0800 |
commit | 9c2e97e9d3510f49c6f2697ef47b85f92df524dd (patch) | |
tree | 42737cbc76220823eba3492df90cd5166c2d83de /libc | |
parent | 86ca12cfff4393eb9b580ddbc3330af964cefe5d (diff) | |
parent | b35d80f0b0a6d87ba20aa2de594db19a0ccf93df (diff) | |
download | bionic-9c2e97e9d3510f49c6f2697ef47b85f92df524dd.zip bionic-9c2e97e9d3510f49c6f2697ef47b85f92df524dd.tar.gz bionic-9c2e97e9d3510f49c6f2697ef47b85f92df524dd.tar.bz2 |
am b35d80f0: am 76299d19: Merge "Remove an extra register move."
* commit 'b35d80f0b0a6d87ba20aa2de594db19a0ccf93df':
Remove an extra register move.
Diffstat (limited to 'libc')
-rw-r--r-- | libc/arch-x86/bionic/clone.S | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libc/arch-x86/bionic/clone.S b/libc/arch-x86/bionic/clone.S index 44fce1e..b9b0957 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 |