diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-05-27 04:19:58 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-05-27 04:19:58 +0000 |
commit | 91ceedb37f9fda2460557cd61944e4d706caad3c (patch) | |
tree | 1a9dfa5d340cad807198e3734366978b1c463a12 | |
parent | 248a349087d25a5812679d497709efc3494c4b66 (diff) | |
download | glibc-91ceedb37f9fda2460557cd61944e4d706caad3c.tar glibc-91ceedb37f9fda2460557cd61944e4d706caad3c.tar.gz glibc-91ceedb37f9fda2460557cd61944e4d706caad3c.tar.bz2 glibc-91ceedb37f9fda2460557cd61944e4d706caad3c.zip |
Fix typo in register name.
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S index 66edb9ac85..d9185925a4 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S @@ -80,7 +80,7 @@ __pthread_cond_broadcast: syscall #ifndef __ASSUME_FUTEX_REQUEUE - cmpq $-EINVAL, %eax + cmpq $-EINVAL, %rax je 9f 10: #endif |