* cgraph.c: Fix typo in debugging output.
authorKelley Cook <kelleycook@wideopenwest.com>
Fri, 19 Sep 2003 12:43:14 +0000 (12:43 +0000)
committerR. Kelley Cook <kcook@gcc.gnu.org>
Fri, 19 Sep 2003 12:43:14 +0000 (12:43 +0000)
From-SVN: r71567

gcc/ChangeLog
gcc/cgraph.c

index b14cf7ca608070868f441f63120624135035a183..72c019e89ff04724fb1bdd683b4c1ba2f8823a28 100644 (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>
 
index 52a3bf631becd1d7b77735c8766b3c3199bba647..43238e58ecdbae4cf3e3226a30f95a0d3c39d221 100644 (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));