Commit d09b58c4 by Jan Hubicka Committed by Jan Hubicka

re PR target/47333 (g++.dg/lto/20091219 FAILs on Solaris 2 with SUN as)

	PR lto/47333
	* g++.dg/lto/pr47333.C: New file.
	* lto-cgraph.c (reachable_from_this_partition_p): Fix pasto.

From-SVN: r169137
parent e8ff8c5a
2011-01-22 Jan Hubicka <jh@suse.cz>
PR lto/47333
* lto-cgraph.c (reachable_from_this_partition_p): Fix pasto.
2011-01-22 Jan Hubicka <jh@suse.cz>
PR tree-optimization/43884
PR lto/44334
* predict.c (maybe_hot_frequency_p): Use entry block frequency as an base.
......
......@@ -383,10 +383,6 @@ bool
reachable_from_this_partition_p (struct cgraph_node *node, cgraph_node_set set)
{
struct cgraph_edge *e;
if (!node->analyzed)
return false;
if (node->global.inlined_to)
return false;
for (e = node->callers; e; e = e->next_caller)
if (cgraph_node_in_set_p (e->caller, set))
return true;
......
2011-01-22 Jan Hubicka <jh@suse.cz>
PR lto/47333
* g++.dg/lto/pr47333.C: New file.
2011-01-22 Jan Hubicka <jh@suse.cz>
PR tree-optimization/43884
PR lto/44334
* gcc.dg/autopar/outer-2.c: Increase array size.
......
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