mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-08 13:57:15 +08:00
i386.c (x86_field_alignment): Remove duplicate test of TARGET_ALIGN_DOUBLE.
* config/i386/i386.c (x86_field_alignment): Remove duplicate test of TARGET_ALIGN_DOUBLE. From-SVN: r56024
This commit is contained in:
parent
dd98e14f31
commit
b23c054d0b
@ -1,3 +1,8 @@
|
||||
2002-08-04 Nathan Sidwell <nathan@codesourcery.com>
|
||||
|
||||
* config/i386/i386.c (x86_field_alignment): Remove duplicate test
|
||||
of TARGET_ALIGN_DOUBLE.
|
||||
|
||||
2002-08-04 Gabriel Dos Reis <gdr@nerim.net>
|
||||
|
||||
* diagnostic.c (inform): New function.
|
||||
|
@ -13822,9 +13822,7 @@ x86_field_alignment (field, computed)
|
||||
return computed;
|
||||
mode = TYPE_MODE (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE
|
||||
? get_inner_array_type (field) : TREE_TYPE (field));
|
||||
if ((mode == DFmode || mode == DCmode
|
||||
|| mode == DImode || mode == CDImode)
|
||||
&& !TARGET_ALIGN_DOUBLE)
|
||||
if (mode == DFmode || mode == DCmode || mode == DImode || mode == CDImode)
|
||||
return MIN (32, computed);
|
||||
return computed;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user