From: Jan Hubicka Date: Sun, 25 Aug 2013 09:47:00 +0000 (+0200) Subject: cgraph.c (cgraph_turn_edge_to_speculative): Fix debug output. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d5c3d3ef5464dd5a89a8158ffe8b38df5a4c1708;p=gcc.git cgraph.c (cgraph_turn_edge_to_speculative): Fix debug output. * cgraph.c (cgraph_turn_edge_to_speculative): Fix debug output. From-SVN: r201977 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d576a447350..69cfa623350 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-08-23 Jan Hubicka + + * cgraph.c (cgraph_turn_edge_to_speculative): + Fix debug output. + 2013-08-23 Jan Hubicka * tree.h (TYPE_FINAL_P, DECL_FINAL_P): New macros. 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); }