[multiple changes]

2009-04-14  Rafael Avila de Espindola  <espindola@google.com>

	Merge:

	2008-12-19  Diego Novillo  <dnovillo@google.com>

        	* cgraph.c (dump_cgraph_node): Show memory address of NODE.

From-SVN: r146036
This commit is contained in:
Rafael Avila de Espindola 2009-04-14 13:54:41 +00:00 committed by Rafael Espindola
parent 587aa06343
commit e495a0c84d
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,11 @@
2009-04-14 Rafael Avila de Espindola <espindola@google.com>
Merge:
2008-12-19 Diego Novillo <dnovillo@google.com>
* cgraph.c (dump_cgraph_node): Show memory address of NODE.
2000-04-14 Richard Guenther <rguenther@suse.de>
* tree-cfg.c (verify_gimple_assign_unary): Adjust vector code

View File

@ -1154,7 +1154,8 @@ void
dump_cgraph_node (FILE *f, struct cgraph_node *node)
{
struct cgraph_edge *edge;
fprintf (f, "%s/%i(%i):", cgraph_node_name (node), node->uid, node->pid);
fprintf (f, "%s/%i(%i) [%p]:", cgraph_node_name (node), node->uid,
node->pid, (void *) node);
if (node->global.inlined_to)
fprintf (f, " (inline copy in %s/%i)",
cgraph_node_name (node->global.inlined_to),