aboutsummaryrefslogtreecommitdiff
path: root/nptl/sysdeps/unix/sysv/linux
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2012-05-15 10:19:11 -0700
committerH.J. Lu <hjl.tools@gmail.com>2012-05-15 10:19:11 -0700
commit289ac4352aa9ac63474e03022a5ad395d8346ee5 (patch)
tree747943f4d3b67039a5b0636411e4ce6cc318993a /nptl/sysdeps/unix/sysv/linux
parent890d8bd8547e7342e65b39aabcedf8398ee51e05 (diff)
downloadglibc-289ac4352aa9ac63474e03022a5ad395d8346ee5.tar
glibc-289ac4352aa9ac63474e03022a5ad395d8346ee5.tar.gz
glibc-289ac4352aa9ac63474e03022a5ad395d8346ee5.tar.bz2
glibc-289ac4352aa9ac63474e03022a5ad395d8346ee5.zip
Use LP_OP(mov) and RDI_LP on pointer
Diffstat (limited to 'nptl/sysdeps/unix/sysv/linux')
-rw-r--r--nptl/sysdeps/unix/sysv/linux/x86_64/cancellation.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/cancellation.S b/nptl/sysdeps/unix/sysv/linux/x86_64/cancellation.S
index d7c7e80cef..31bb08b376 100644
--- a/nptl/sysdeps/unix/sysv/linux/x86_64/cancellation.S
+++ b/nptl/sysdeps/unix/sysv/linux/x86_64/cancellation.S
@@ -72,10 +72,10 @@ ENTRY(__pthread_enable_asynccancel)
3: subq $8, %rsp
cfi_adjust_cfa_offset(8)
- movq $TCB_PTHREAD_CANCELED, %fs:RESULT
+ LP_OP(mov) $TCB_PTHREAD_CANCELED, %fs:RESULT
lock
orl $TCB_EXITING_BITMASK, %fs:CANCELHANDLING
- movq %fs:CLEANUP_JMP_BUF, %rdi
+ mov %fs:CLEANUP_JMP_BUF, %RDI_LP
#ifdef SHARED
call __pthread_unwind@PLT
#else
@@ -106,7 +106,7 @@ ENTRY(__pthread_disable_asynccancel)
/* Performance doesn't matter in this loop. We will
delay until the thread is canceled. And we will unlikely
enter the loop twice. */
-4: movq %fs:0, %rdi
+4: mov %fs:0, %RDI_LP
movl $__NR_futex, %eax
xorq %r10, %r10
addq $CANCELHANDLING, %rdi