From: H.J. Lu Date: Tue, 15 May 2012 17:17:30 +0000 (-0700) Subject: Replace 8-byte data alignment with LP_SIZE alignment X-Git-Tag: glibc-2.16-tps~326 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=890d8bd8547e7342e65b39aabcedf8398ee51e05;p=thirdparty%2Fglibc.git Replace 8-byte data alignment with LP_SIZE alignment --- diff --git a/ChangeLog b/ChangeLog index c9db2b9dce4..868c97b0721 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-05-15 H.J. Lu + + * sysdeps/unix/sysv/linux/x86_64/sigaction.c (RESTORE2): Replace + 8-byte data alignment with LP_SIZE alignment. + 2012-05-15 H.J. Lu * sysdeps/unix/sysv/linux/x86_64/clone.S: Load pointer to TID diff --git a/sysdeps/unix/sysv/linux/x86_64/sigaction.c b/sysdeps/unix/sysv/linux/x86_64/sigaction.c index 89e02d5d0f6..5a3ad1830e6 100644 --- a/sysdeps/unix/sysv/linux/x86_64/sigaction.c +++ b/sysdeps/unix/sysv/linux/x86_64/sigaction.c @@ -146,7 +146,7 @@ asm \ ".LSTARTAUGMNT_" #name ":\n" \ " .byte 0x1b\n" /* DW_EH_PE_pcrel|DW_EH_PE_sdata4. */ \ ".LENDAUGMNT_" #name ":\n" \ - " .align 8\n" \ + " .align " LP_SIZE "\n" \ ".LENDCIE_" #name ":\n" \ " .long .LENDFDE_" #name "-.LSTARTFDE_" #name "\n" /* FDE len */ \ ".LSTARTFDE_" #name ":\n" \ @@ -177,7 +177,7 @@ asm \ /* do_expr (49 |* rflags *|, oEFL) */ \ /* `cs'/`ds'/`fs' are unaligned and a different size. */ \ /* gas: Error: register save offset not a multiple of 8 */ \ - " .align 8\n" \ + " .align " LP_SIZE "\n" \ ".LENDFDE_" #name ":\n" \ " .previous\n" \ );