Commit 7d49f92a by Richard Kenner

(finish_decl): When preserving an initializer, ensure its type is on a

good obstack.

From-SVN: r6742
parent 36281332
......@@ -3588,6 +3588,12 @@ finish_decl (decl, init, asmspec_tree)
output_constant_def to make its rtl on the permanent
obstack. */
TREE_PERMANENT (DECL_INITIAL (decl)) = 1;
/* The initializer and DECL must have the same (or equivalent
types), but if the initializer is a STRING_CST, its type
might not be on the right obstack, so copy the type
of DECL. */
TREE_TYPE (DECL_INITIAL (decl)) = type;
}
else
DECL_INITIAL (decl) = error_mark_node;
......
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