Commit 19751f1f by Rafael Avila de Espindola Committed by Rafael Espindola

cgraph.c (cgraph_make_node_local): Use DECL_COMDAT_GROUP.

2009-06-15  Rafael Avila de Espindola  <espindola@google.com>

	* cgraph.c (cgraph_make_node_local): Use DECL_COMDAT_GROUP.

From-SVN: r148494
parent d40eb158
2009-06-15 Rafael Avila de Espindola <espindola@google.com>
* cgraph.c (cgraph_make_node_local): Use DECL_COMDAT_GROUP.
2009-06-15 Aldy Hernandez <aldyh@redhat.com>
* except.c (init_eh): Use BUILTINS_LOCATION when calling build_decl.
......
......@@ -1889,7 +1889,7 @@ cgraph_make_node_local (struct cgraph_node *node)
if (DECL_COMDAT (node->decl) || DECL_EXTERNAL (node->decl))
{
DECL_COMDAT (node->decl) = 0;
DECL_ONE_ONLY (node->decl) = 0;
DECL_COMDAT_GROUP (node->decl) = 0;
TREE_PUBLIC (node->decl) = 0;
DECL_WEAK (node->decl) = 0;
DECL_EXTERNAL (node->decl) = 0;
......
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