Commit 2ddbba80 by Eric Botcazou Committed by Eric Botcazou

cgraphunit.c (cgraph_decide_inlining): Adjust dump lines in always_inline pass.

	* cgraphunit.c (cgraph_decide_inlining): Adjust dump lines in
	always_inline pass.

From-SVN: r82668
parent 5e2f3f39
2004-06-06 Eric Botcazou <ebotcazou@libertysurf.fr>
* cgraphunit.c (cgraph_decide_inlining): Adjust dump lines in
always_inline pass.
2004-06-05 David S. Miller <davem@nuts.davemloft.net> 2004-06-05 David S. Miller <davem@nuts.davemloft.net>
* config/sparc/linux.h (TARGET_C99_FUNCTIONS): Set. * config/sparc/linux.h (TARGET_C99_FUNCTIONS): Set.
......
...@@ -1482,7 +1482,7 @@ cgraph_decide_inlining (void) ...@@ -1482,7 +1482,7 @@ cgraph_decide_inlining (void)
if (cgraph_dump_file) if (cgraph_dump_file)
fprintf (cgraph_dump_file, fprintf (cgraph_dump_file,
"\nConsidering %s %i insns (always inline)\n", "\nConsidering %s %i insns (always inline)\n",
cgraph_node_name (e->callee), e->callee->global.insns); cgraph_node_name (node), node->global.insns);
old_insns = overall_insns; old_insns = overall_insns;
for (e = node->callers; e; e = next) for (e = node->callers; e; e = next)
{ {
...@@ -1496,8 +1496,8 @@ cgraph_decide_inlining (void) ...@@ -1496,8 +1496,8 @@ cgraph_decide_inlining (void)
if (cgraph_dump_file) if (cgraph_dump_file)
fprintf (cgraph_dump_file, fprintf (cgraph_dump_file,
" Inlined into %s which now has %i insns.\n", " Inlined into %s which now has %i insns.\n",
cgraph_node_name (node->callees->caller), cgraph_node_name (e->caller),
node->callees->caller->global.insns); e->caller->global.insns);
} }
if (cgraph_dump_file) if (cgraph_dump_file)
fprintf (cgraph_dump_file, fprintf (cgraph_dump_file,
......
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