mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-26 07:40:26 +08:00
re PR target/29009 (ice in kernel build)
2006-09-10 Andrew Pinski <pinskia@physics.uc.edu> PR target/29009 * config/i386/i386.c (override_options): Use 128-bit stack boundary always for 64bits. From-SVN: r116831
This commit is contained in:
parent
de097a3b99
commit
748dc0c9c2
@ -1,3 +1,9 @@
|
||||
2006-09-10 Andrew Pinski <pinskia@physics.uc.edu>
|
||||
|
||||
PR target/29009
|
||||
* config/i386/i386.c (override_options): Use 128-bit
|
||||
stack boundary always for 64bits.
|
||||
|
||||
2006-09-10 Eric Botcazou <ebotcazou@libertysurf.fr>
|
||||
|
||||
PR rtl-optimization/28636
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user