c6d234
commit 8e1f346462d8c1b238a7c6bb501c45b381a45e4d
c6d234
Author: H.J. Lu <hjl.tools@gmail.com>
c6d234
Date:   Sun Jul 12 14:38:58 2015 -0700
c6d234
c6d234
    Align stack to 16 bytes when calling __setcontext
c6d234
    
c6d234
    Don't use pop to restore %rdi so that stack is aligned to 16 bytes
c6d234
    when calling __setcontext.
c6d234
    
c6d234
            [BZ #18661]
c6d234
            * sysdeps/unix/sysv/linux/x86_64/__start_context.S
c6d234
            (__start_context): Don't use pop to restore %rdi so that stack
c6d234
            is aligned to 16 bytes when calling __setcontext.
c6d234
c6d234
diff --git a/sysdeps/unix/sysv/linux/x86_64/__start_context.S b/sysdeps/unix/sysv/linux/x86_64/__start_context.S
c6d234
index 9f2ee23736bfbf70..f59d6b4f7f3d3d43 100644
c6d234
--- a/sysdeps/unix/sysv/linux/x86_64/__start_context.S
c6d234
+++ b/sysdeps/unix/sysv/linux/x86_64/__start_context.S
c6d234
@@ -31,8 +31,8 @@ ENTRY(__start_context)
c6d234
 	   on the stack pointer for the next context.  */
c6d234
 	movq	%rbx, %rsp
c6d234
 
c6d234
-	popq	%rdi			/* This is the next context.  */
c6d234
-	cfi_adjust_cfa_offset(-8)
c6d234
+	/* Don't use pop here so that stack is aligned to 16 bytes.  */
c6d234
+	movq	(%rsp), %rdi		/* This is the next context.  */
c6d234
 	testq	%rdi, %rdi
c6d234
 	je	2f			/* If it is zero exit.  */
c6d234