From: Kelley Cook Date: Fri, 19 Sep 2003 12:43:14 +0000 (+0000) Subject: * cgraph.c: Fix typo in debugging output. X-Git-Tag: releases/gcc-3.4.0~3640 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7dd87381a62c5470773ec3854f8a9e37b3ccde19;p=thirdparty%2Fgcc.git * cgraph.c: Fix typo in debugging output. From-SVN: r71567 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b14cf7ca6080..72c019e89ff0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-09-19 Kelley Cook + + * cgraph.c: Fix typo in debugging output. + 2003-09-19 T. Papadopoulo Eric Botcazou diff --git a/gcc/cgraph.c b/gcc/cgraph.c index 52a3bf631bec..43238e58ecdb 100644 --- a/gcc/cgraph.c +++ b/gcc/cgraph.c @@ -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));