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:
Jan Hubicka 2009-03-28 17:53:27 +01:00 committed by Jan Hubicka
parent fbb789d49a
commit 1de812a6cc
2 changed files with 13 additions and 11 deletions

View File

@ -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

View File

@ -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)