* cgraph.c: Fix typo in debugging output.

From-SVN: r71567
This commit is contained in:
Kelley Cook 2003-09-19 12:43:14 +00:00 committed by R. Kelley Cook
parent 68442facf0
commit 7dd87381a6
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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>
Eric Botcazou <ebotcazou@libertysurf.fr>

View File

@ -376,7 +376,7 @@ dump_cgraph (FILE *f)
if (node->global.cloned_times > 1)
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)
{
fprintf (f, "%s ", cgraph_node_name (edge->caller));