summaryrefslogtreecommitdiff
path: root/gcc/cgraph.c
diff options
context:
space:
mode:
authorkcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4>2003-09-19 12:43:14 +0000
committerkcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4>2003-09-19 12:43:14 +0000
commit93e6b95c6878bde87f0f38135d3bd16115db4008 (patch)
tree32c829936ca34ad2b8fc2183f76bd4a1111d475a /gcc/cgraph.c
parent2470dd00d7eb1c564d64113b768597c91fc8921d (diff)
downloadgcc-93e6b95c6878bde87f0f38135d3bd16115db4008.tar.gz
* cgraph.c: Fix typo in debugging output.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71567 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cgraph.c')
-rw-r--r--gcc/cgraph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cgraph.c b/gcc/cgraph.c
index 52a3bf631be..43238e58ecd 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));