Commit 73d098df by Jan Hubicka Committed by Jan Hubicka

ipa-prop.c (update_indirect_edges_after_inlining): By more careful about not…

ipa-prop.c (update_indirect_edges_after_inlining): By more careful about not letting any speculative edges unupdated.


	* ipa-prop.c (update_indirect_edges_after_inlining): By more careful
	about not letting any speculative edges unupdated.

From-SVN: r220425
parent 88d67744
2015-02-04 Jan Hubicka <hubicka@ucw.cz>
* ipa-prop.c (update_indirect_edges_after_inlining): By more careful
about not letting any speculative edges unupdated.
2015-02-04 Jan Hubicka <hubicka@ucw.cz>
PR gcov/64123
* gcov-io.c (gcov_var): Export.
......
......@@ -3118,7 +3118,8 @@ update_indirect_edges_after_inlining (struct cgraph_edge *cs,
new_direct_edge->indirect_inlining_edge = 1;
top = IPA_EDGE_REF (cs);
res = true;
continue;
if (!new_direct_edge->speculative)
continue;
}
else if (new_direct_edge)
{
......
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