From: Andrew Pinski Date: Sun, 10 Sep 2006 23:05:00 +0000 (+0000) Subject: re PR target/29009 (ice in kernel build) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=748dc0c9c2e8aa7406269aca9406ae17ef4467e9;p=gcc.git re PR target/29009 (ice in kernel build) 2006-09-10 Andrew Pinski PR target/29009 * config/i386/i386.c (override_options): Use 128-bit stack boundary always for 64bits. From-SVN: r116831 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bbf36261fb9..624cac2ec57 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2006-09-10 Andrew Pinski + + PR target/29009 + * config/i386/i386.c (override_options): Use 128-bit + stack boundary always for 64bits. + 2006-09-10 Eric Botcazou PR rtl-optimization/28636 diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 7f954e29bab..be17c02a246 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -1903,7 +1903,8 @@ override_options (void) don't want additional code to keep the stack aligned when optimizing for code size. */ ix86_preferred_stack_boundary - = ((TARGET_MACHO || TARGET_SSE || !optimize_size) ? 128 : 32); + = (TARGET_64BIT || TARGET_MACHO || TARGET_SSE || !optimize_size) + ? 128 : 32; if (ix86_preferred_stack_boundary_string) { i = atoi (ix86_preferred_stack_boundary_string);