Module Name: src
Committed By: dsl
Date: Sun Dec 30 20:16:59 UTC 2012
Modified Files:
src/external/gpl3/gcc/dist/gcc/config/i386: i386.c
Log Message:
No need to check both TARGET_64BIT and ix86_preferred_stack_boundary >= 64,
if the former is true the latter is also true.
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/gpl3/gcc/dist/gcc/config/i386/i386.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/gpl3/gcc/dist/gcc/config/i386/i386.c
diff -u src/external/gpl3/gcc/dist/gcc/config/i386/i386.c:1.3 src/external/gpl3/gcc/dist/gcc/config/i386/i386.c:1.4
--- src/external/gpl3/gcc/dist/gcc/config/i386/i386.c:1.3 Tue Sep 18 07:04:41 2012
+++ src/external/gpl3/gcc/dist/gcc/config/i386/i386.c Sun Dec 30 20:16:58 2012
@@ -20222,7 +20222,7 @@ ix86_local_alignment (tree exp, enum mac
&& TYPE_FIELDS (type))
{
if (DECL_MODE (TYPE_FIELDS (type)) == DFmode && align < 64
- && (TARGET_64BIT || ix86_preferred_stack_boundary >= 64))
+ && ix86_preferred_stack_boundary >= 64)
return 64;
if (ALIGN_MODE_128 (DECL_MODE (TYPE_FIELDS (type))) && align < 128)
return 128;
@@ -20232,7 +20232,7 @@ ix86_local_alignment (tree exp, enum mac
{
if (TYPE_MODE (type) == DFmode && align < 64
- && (TARGET_64BIT || ix86_preferred_stack_boundary >= 64))
+ && ix86_preferred_stack_boundary >= 64)
return 64;
if (ALIGN_MODE_128 (TYPE_MODE (type)) && align < 128)
return 128;