diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-03-14 23:46:29 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-03-14 23:46:29 +0000 |
commit | 8b4a0b2f78c393b1e6c4c5ff2f369481afc1e5e4 (patch) | |
tree | 06878b2936657f1f3201271e4d7e861b54acb633 /nptl | |
parent | c58859ce3a98917b7c4f7b1de94fb8ae3f5485cd (diff) | |
download | glibc-8b4a0b2f78c393b1e6c4c5ff2f369481afc1e5e4.tar glibc-8b4a0b2f78c393b1e6c4c5ff2f369481afc1e5e4.tar.gz glibc-8b4a0b2f78c393b1e6c4c5ff2f369481afc1e5e4.tar.bz2 glibc-8b4a0b2f78c393b1e6c4c5ff2f369481afc1e5e4.zip |
Use correct amount of stack correction.
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/x86_64/pthread_once.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_once.S b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_once.S index c01da52649..66f8b182fe 100644 --- a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_once.S +++ b/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_once.S @@ -112,7 +112,7 @@ __pthread_once: movq $SYS_futex, %rax syscall -4: addq $4, %rsp +4: addq $8, %rsp xorq %rax, %rax retq |