Commit e495a0c8 by Rafael Avila de Espindola Committed by Rafael Espindola

[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
parent 587aa063
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
......
......@@ -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),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment