Commit 13148dd2 by Andrew MacLeod Committed by Andrew Macleod

tree-ssa-operands.c (verify_abort): Use %p for pointers.


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

	* tree-ssa-operands.c (verify_abort): Use %p for pointers.

From-SVN: r97659
parent 3078e929
2005-04-05 Andrew MacLeod <amacleod@redhat.com> 2005-04-05 Andrew MacLeod <amacleod@redhat.com>
* tree-ssa-operands.c (verify_abort): Use %p for pointers.
2005-04-05 Andrew MacLeod <amacleod@redhat.com>
* tree-pretty-print.c (dump_generic_node): Use %p for pointer. * 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>
......
...@@ -2185,12 +2185,12 @@ verify_abort (FILE *f, ssa_imm_use_t *var) ...@@ -2185,12 +2185,12 @@ verify_abort (FILE *f, ssa_imm_use_t *var)
{ {
if (stmt_modified_p(stmt)) if (stmt_modified_p(stmt))
{ {
fprintf (f, " STMT MODIFIED. - <0x%x> ", (unsigned int)stmt); fprintf (f, " STMT MODIFIED. - <%p> ", (void *)stmt);
print_generic_stmt (f, stmt, TDF_SLIM); print_generic_stmt (f, stmt, TDF_SLIM);
} }
} }
fprintf (f, " IMM ERROR : (use_p : tree: 0x%X:0x%x)", (unsigned int)var, fprintf (f, " IMM ERROR : (use_p : tree - %p:%p)", (void *)var,
(unsigned int)var->use); (void *)var->use);
print_generic_expr (f, USE_FROM_PTR (var), TDF_SLIM); print_generic_expr (f, USE_FROM_PTR (var), TDF_SLIM);
fprintf(f, "\n"); fprintf(f, "\n");
} }
......
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