Commit 7bf4274e by Jan Hubicka Committed by Jan Hubicka

ipa.c (function_and_variable_visibility): First remember function was global and…

ipa.c (function_and_variable_visibility): First remember function was global and then make it local.


	* ipa.c (function_and_variable_visibility): First remember function was global
	and then make it local.

From-SVN: r201924
parent 1bea243d
2013-08-22 Jan Hubicka <jh@susue.cz>
* ipa.c (function_and_variable_visibility): First remember function was global
and then make it local.
2013-08-22 Julian Brown <julian@codesourcery.com>
* configure.ac: Add aarch64 to list of arches which use "nop" in
......
......@@ -968,10 +968,10 @@ function_and_variable_visibility (bool whole_program)
&& !vnode->symbol.weakref)
{
gcc_assert (in_lto_p || whole_program || !TREE_PUBLIC (vnode->symbol.decl));
symtab_make_decl_local (vnode->symbol.decl);
vnode->symbol.unique_name = ((vnode->symbol.resolution == LDPR_PREVAILING_DEF_IRONLY
|| vnode->symbol.resolution == LDPR_PREVAILING_DEF_IRONLY_EXP)
&& TREE_PUBLIC (vnode->symbol.decl));
symtab_make_decl_local (vnode->symbol.decl);
if (vnode->symbol.same_comdat_group)
symtab_dissolve_same_comdat_group_list ((symtab_node) vnode);
vnode->symbol.resolution = LDPR_PREVAILING_DEF_IRONLY;
......
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