Commit 9e145afd by Naveen H.S Committed by Naveen H.S

ipa-inline.c (inline_small_functions): Swap the operands in enum.

2015-01-15  Naveen H.S  <Naveen.Hurugalawadi@caviumnetworks.com>

	* ipa-inline.c (inline_small_functions): Swap the operands in
	enum.

From-SVN: r219573
parent 0d92b555
2015-01-15 Naveen H.S <Naveen.Hurugalawadi@caviumnetworks.com>
* ipa-inline.c (inline_small_functions): Swap the operands in
enum.
2015-01-13 Jan Hubicka <hubicka@ucw.cz> 2015-01-13 Jan Hubicka <hubicka@ucw.cz>
PR ipa/64481 PR ipa/64481
......
...@@ -1697,10 +1697,12 @@ inline_small_functions (void) ...@@ -1697,10 +1697,12 @@ inline_small_functions (void)
" to be inlined into %s/%i in %s:%i\n" " to be inlined into %s/%i in %s:%i\n"
" Estimated badness is %f, frequency %.2f.\n", " Estimated badness is %f, frequency %.2f.\n",
edge->caller->name (), edge->caller->order, edge->caller->name (), edge->caller->order,
edge->call_stmt ? "unknown" edge->call_stmt
: gimple_filename ((const_gimple) edge->call_stmt), ? gimple_filename ((const_gimple) edge->call_stmt)
edge->call_stmt ? -1 : "unknown",
: gimple_lineno ((const_gimple) edge->call_stmt), edge->call_stmt
? gimple_lineno ((const_gimple) edge->call_stmt)
: -1,
badness.to_double (), badness.to_double (),
edge->frequency / (double)CGRAPH_FREQ_BASE); edge->frequency / (double)CGRAPH_FREQ_BASE);
if (edge->count) if (edge->count)
......
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