Commit 7dd87381 by Kelley Cook Committed by R. Kelley Cook

* cgraph.c: Fix typo in debugging output.

From-SVN: r71567
parent 68442fac
2003-09-19 Kelley Cook <kelleycook@wideopenwest.com>
* cgraph.c: Fix typo in debugging output.
2003-09-19 T. Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr> 2003-09-19 T. Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
Eric Botcazou <ebotcazou@libertysurf.fr> Eric Botcazou <ebotcazou@libertysurf.fr>
......
...@@ -376,7 +376,7 @@ dump_cgraph (FILE *f) ...@@ -376,7 +376,7 @@ dump_cgraph (FILE *f)
if (node->global.cloned_times > 1) if (node->global.cloned_times > 1)
fprintf (f, " cloned %ix", node->global.cloned_times); fprintf (f, " cloned %ix", node->global.cloned_times);
fprintf (f, "\n called by :"); fprintf (f, "\n called by: ");
for (edge = node->callers; edge; edge = edge->next_caller) for (edge = node->callers; edge; edge = edge->next_caller)
{ {
fprintf (f, "%s ", cgraph_node_name (edge->caller)); fprintf (f, "%s ", cgraph_node_name (edge->caller));
......
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