Commit d75de25b by Jan Hubicka Committed by Jan Hubicka

re PR ipa/64694 (FAIL: 23_containers/unordered_set/insert/hash_policy.cc)


	PR ipa/64694
	* ipa-inline.c (inline_small_functions): Fix thinko in maintenance of
	heap.

Co-Authored-By: H.J. Lu <hongjiu.lu@intel.com>

From-SVN: r220011
parent ff1803c1
2015-01-22 Jan Hubicka <hubicka@ucw.cz>
H.J. Lu <hongjiu.lu@intel.com>
PR ipa/64694
* ipa-inline.c (inline_small_functions): Fix thinko in maintenance of
heap.
2015-01-22 Wei Mi <wmi@google.com>
PR rtl-optimization/64557
......
......@@ -1794,7 +1794,7 @@ inline_small_functions (void)
#endif
if (current_badness != badness)
{
if (edge_heap.min () && badness > edge_heap.min_key ())
if (edge_heap.min () && current_badness > edge_heap.min_key ())
{
edge->aux = edge_heap.insert (current_badness, edge);
continue;
......
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