]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
[multiple changes]
authorRafael Avila de Espindola <espindola@google.com>
Tue, 14 Apr 2009 13:54:41 +0000 (13:54 +0000)
committerRafael Espindola <espindola@gcc.gnu.org>
Tue, 14 Apr 2009 13:54:41 +0000 (13:54 +0000)
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

gcc/ChangeLog
gcc/cgraph.c

index de5f66bb8b8bf59b7c586bf0a785e133d15b56e8..e489fc0ac541023c6190e483c5555ff6bc1898f4 100644 (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
index d5dba426b1ab4f07294d4deaeb064bdd316371c8..86642ab605bf28154616ddc1abf5b5abd6c3e95b 100644 (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),