Commit 1de812a6 by Jan Hubicka Committed by Jan Hubicka

tree-ssa-structalias.c (ipa_pta_execute): Fix bogus node->analyzed test…

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
parent fbb789d4
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,8 +5669,6 @@ ipa_pta_execute (void)
for (node = cgraph_nodes; node; node = node->next)
{
if (!node->analyzed)
{
unsigned int varid;
varid = create_function_info_for (node->decl,
......@@ -5682,7 +5680,6 @@ ipa_pta_execute (void)
make_constraint_from (fi, anything_id);
}
}
}
for (node = cgraph_nodes; node; node = node->next)
{
if (node->analyzed)
......
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