From: Ulrich Drepper Date: Thu, 13 Jan 2011 01:59:32 +0000 (-0500) Subject: Fix alignment in x86 destructor calls. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bbfacbc5eacc1394bedce108cafff7baebecae7e;p=thirdparty%2Fglibc.git Fix alignment in x86 destructor calls. (cherry picked from commit 5e49c52efdb37eb0aa315156f39056f25ff9ddaa) --- diff --git a/ChangeLog b/ChangeLog index c1c955c9ba8..d66e3db717f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-01-10 Paul Pluzhnikov + + * sysdeps/i386/Makefile: stdlib/cxa_finalize.c needs 16-byte stack + alignment for SSE2. + 2011-01-12 Ulrich Drepper [BZ #12394] diff --git a/sysdeps/i386/Makefile b/sysdeps/i386/Makefile index ef45ce6e78b..3d9f3fc3586 100644 --- a/sysdeps/i386/Makefile +++ b/sysdeps/i386/Makefile @@ -47,6 +47,7 @@ endif # And a couple of other routines ifeq ($(subdir),stdlib) CFLAGS-exit.c += -mpreferred-stack-boundary=4 +CFLAGS-cxa_finalize.c += -mpreferred-stack-boundary=4 endif ifeq ($(subdir),elf) CFLAGS-dl-init.c += -mpreferred-stack-boundary=4