tree-ssa-structalias.c (ipa_pta_execute): Fix bogus node->analyzed test introduced by my previous patch.
* tree-ssa-structalias.c (ipa_pta_execute): Fix bogus node->analyzed test introduced by my previous patch. From-SVN: r145194
This commit is contained in:
parent
fbb789d49a
commit
1de812a6cc
@ -1,3 +1,8 @@
|
||||
2009-03-28 Jan Hubicka <jh@suse.cz>
|
||||
|
||||
* tree-ssa-structalias.c (ipa_pta_execute): Fix bogus node->analyzed
|
||||
test introduced by my previous patch.
|
||||
|
||||
2009-03-28 Richard Guenther <rguenther@suse.de>
|
||||
|
||||
* tree-ssa-copy.c (copy_prop_visit_phi_node): Do not leave
|
||||
|
@ -5669,18 +5669,15 @@ ipa_pta_execute (void)
|
||||
|
||||
for (node = cgraph_nodes; node; node = node->next)
|
||||
{
|
||||
if (!node->analyzed)
|
||||
{
|
||||
unsigned int varid;
|
||||
unsigned int varid;
|
||||
|
||||
varid = create_function_info_for (node->decl,
|
||||
cgraph_node_name (node));
|
||||
if (node->local.externally_visible)
|
||||
{
|
||||
varinfo_t fi = get_varinfo (varid);
|
||||
for (; fi; fi = fi->next)
|
||||
make_constraint_from (fi, anything_id);
|
||||
}
|
||||
varid = create_function_info_for (node->decl,
|
||||
cgraph_node_name (node));
|
||||
if (node->local.externally_visible)
|
||||
{
|
||||
varinfo_t fi = get_varinfo (varid);
|
||||
for (; fi; fi = fi->next)
|
||||
make_constraint_from (fi, anything_id);
|
||||
}
|
||||
}
|
||||
for (node = cgraph_nodes; node; node = node->next)
|
||||
|
Loading…
Reference in New Issue
Block a user