Commit dbb9a00f by Andrew MacLeod Committed by Andrew Macleod

tree-pretty-print.c (dump_generic_node): Use %p for pointer.

2005-04-05  Andrew MacLeod  <amacleod@redhat.com>

	* tree-pretty-print.c (dump_generic_node): Use %p for pointer.

From-SVN: r97655
parent f19e3a64
2005-04-05 Andrew MacLeod <amacleod@redhat.com>
* tree-pretty-print.c (dump_generic_node): Use %p for pointer.
2005-04-05 Jakub Jelinek <jakub@redhat.com> 2005-04-05 Jakub Jelinek <jakub@redhat.com>
* config/i386/i386.c (init_cumulative_args): For -m32 -mfpmath=sse * config/i386/i386.c (init_cumulative_args): For -m32 -mfpmath=sse
......
...@@ -272,7 +272,7 @@ dump_generic_node (pretty_printer *buffer, tree node, int spc, int flags, ...@@ -272,7 +272,7 @@ dump_generic_node (pretty_printer *buffer, tree node, int spc, int flags,
dump_vops (buffer, node, spc, flags); dump_vops (buffer, node, spc, flags);
if (is_stmt && (flags & TDF_STMTADDR)) if (is_stmt && (flags & TDF_STMTADDR))
pp_printf (buffer, "<&0x%x> ", (unsigned int)node); pp_printf (buffer, "<&%p> ", (void *)node);
if (dumping_stmts if (dumping_stmts
&& (flags & TDF_LINENO) && (flags & TDF_LINENO)
......
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