cgraphunit.c (cgraph_function_and_variable_visibility): Set visibility flags correctly in whole program mode.
* cgraphunit.c (cgraph_function_and_variable_visibility): Set visibility flags correctly in whole program mode. From-SVN: r102415
This commit is contained in:
parent
9e52adc409
commit
57a7370922
@ -1,3 +1,8 @@
|
||||
2005-07-27 Jan Hubicka <jh@suse.cz>
|
||||
|
||||
* cgraphunit.c (cgraph_function_and_variable_visibility): Set
|
||||
visibility flags correctly in whole program mode.
|
||||
|
||||
2005-07-26 Steve Ellcey <sje@cup.hp.com>
|
||||
|
||||
PR rtl-optimization/22472
|
||||
|
@ -1123,7 +1123,8 @@ cgraph_function_and_variable_visibility (void)
|
||||
{
|
||||
if (node->reachable
|
||||
&& (DECL_COMDAT (node->decl)
|
||||
|| (TREE_PUBLIC (node->decl) && !DECL_EXTERNAL (node->decl))))
|
||||
|| (!flag_whole_program
|
||||
&& TREE_PUBLIC (node->decl) && !DECL_EXTERNAL (node->decl))))
|
||||
node->local.externally_visible = true;
|
||||
if (!node->local.externally_visible && node->analyzed
|
||||
&& !DECL_EXTERNAL (node->decl))
|
||||
@ -1139,6 +1140,7 @@ cgraph_function_and_variable_visibility (void)
|
||||
for (vnode = cgraph_varpool_nodes_queue; vnode; vnode = vnode->next_needed)
|
||||
{
|
||||
if (vnode->needed
|
||||
&& !flag_whole_program
|
||||
&& (DECL_COMDAT (vnode->decl) || TREE_PUBLIC (vnode->decl)))
|
||||
vnode->externally_visible = 1;
|
||||
if (!vnode->externally_visible)
|
||||
|
Loading…
Reference in New Issue
Block a user