Commit 02a27e82 by Richard Kenner

(get_unwidened): Don't crash if FIELD_DECL not layed out.

From-SVN: r13508
parent a9d07d6e
......@@ -4181,7 +4181,9 @@ get_unwidened (op, for_type)
if (TREE_CODE (op) == COMPONENT_REF
/* Since type_for_size always gives an integer type. */
&& TREE_CODE (type) != REAL_TYPE)
&& TREE_CODE (type) != REAL_TYPE
/* Don't crash if field not layed out yet. */
&& DECL_SIZE (TREE_OPERAND (op, 1)) != 0)
{
unsigned innerprec = TREE_INT_CST_LOW (DECL_SIZE (TREE_OPERAND (op, 1)));
type = type_for_size (innerprec, TREE_UNSIGNED (TREE_OPERAND (op, 1)));
......
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