Commit b23c054d by Nathan Sidwell Committed by Nathan Sidwell

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
parent dd98e14f
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> 2002-08-04 Gabriel Dos Reis <gdr@nerim.net>
* diagnostic.c (inform): New function. * diagnostic.c (inform): New function.
......
...@@ -13822,9 +13822,7 @@ x86_field_alignment (field, computed) ...@@ -13822,9 +13822,7 @@ x86_field_alignment (field, computed)
return computed; return computed;
mode = TYPE_MODE (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE mode = TYPE_MODE (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE
? get_inner_array_type (field) : TREE_TYPE (field)); ? get_inner_array_type (field) : TREE_TYPE (field));
if ((mode == DFmode || mode == DCmode if (mode == DFmode || mode == DCmode || mode == DImode || mode == CDImode)
|| mode == DImode || mode == CDImode)
&& !TARGET_ALIGN_DOUBLE)
return MIN (32, computed); return MIN (32, computed);
return computed; return computed;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment