Commit 62b1077c by Richard Kenner

(decl_attributes, case A_T_UNION): Don't look at fields of union if

there aren't any.

From-SVN: r12256
parent 76565a24
......@@ -408,7 +408,8 @@ decl_attributes (node, attributes, prefix_attributes)
if (is_type
&& TREE_CODE (type) == UNION_TYPE
&& (decl == 0
|| TYPE_MODE (type) == DECL_MODE (TYPE_FIELDS (type))))
|| (TYPE_FIELDS (type) != 0
&& TYPE_MODE (type) == DECL_MODE (TYPE_FIELDS (type)))))
TYPE_TRANSPARENT_UNION (type) = 1;
else if (decl != 0 && TREE_CODE (decl) == PARM_DECL
&& TREE_CODE (type) == UNION_TYPE
......
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