diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-08-25 09:47:00 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-08-25 09:47:00 +0000 |
commit | 8d68eb111ac5deb15742e74031eeec5a5481cb9b (patch) | |
tree | 71bac8811d6f226bc7beade9e882cf4250737c94 /gcc/cgraph.c | |
parent | 5dece6c16af01e5808c1b48fbbfd5829f7d9c110 (diff) | |
download | gcc-8d68eb111ac5deb15742e74031eeec5a5481cb9b.tar.gz |
* cgraph.c (cgraph_turn_edge_to_speculative):
Fix debug output.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@201977 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cgraph.c')
-rw-r--r-- | gcc/cgraph.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cgraph.c b/gcc/cgraph.c index 24770812e62..13527c2422d 100644 --- a/gcc/cgraph.c +++ b/gcc/cgraph.c @@ -1076,8 +1076,8 @@ cgraph_turn_edge_to_speculative (struct cgraph_edge *e, if (dump_file) { - fprintf (dump_file, "Indirect call -> direct call from" - " other module %s/%i => %s/%i\n", + fprintf (dump_file, "Indirect call -> speculative call" + " %s/%i => %s/%i\n", xstrdup (cgraph_node_name (n)), n->symbol.order, xstrdup (cgraph_node_name (n2)), n2->symbol.order); } |