aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2013-08-25 11:47:00 +0200
committerJan Hubicka <hubicka@gcc.gnu.org>2013-08-25 09:47:00 +0000
commitd5c3d3ef5464dd5a89a8158ffe8b38df5a4c1708 (patch)
tree71bac8811d6f226bc7beade9e882cf4250737c94 /gcc
parent4b0809ef53f674abacb381674afdc49bbc13d2f2 (diff)
downloadgcc-d5c3d3ef5464dd5a89a8158ffe8b38df5a4c1708.zip
gcc-d5c3d3ef5464dd5a89a8158ffe8b38df5a4c1708.tar.gz
gcc-d5c3d3ef5464dd5a89a8158ffe8b38df5a4c1708.tar.bz2
cgraph.c (cgraph_turn_edge_to_speculative): Fix debug output.
* cgraph.c (cgraph_turn_edge_to_speculative): Fix debug output. From-SVN: r201977
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/cgraph.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index d576a44..69cfa62 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,10 @@
2013-08-23 Jan Hubicka <jh@suse.cz>
+ * cgraph.c (cgraph_turn_edge_to_speculative):
+ Fix debug output.
+
+2013-08-23 Jan Hubicka <jh@suse.cz>
+
* tree.h (TYPE_FINAL_P, DECL_FINAL_P): New macros.
(tree_decl_with_vis): Add FINAL field.
diff --git a/gcc/cgraph.c b/gcc/cgraph.c
index 2477081..13527c2 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);
}