aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/cgraph.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b14cf7c..72c019e 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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>
diff --git a/gcc/cgraph.c b/gcc/cgraph.c
index 52a3bf6..43238e5 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));