diff options
author | Richard Henderson <rth@redhat.com> | 2004-07-15 00:33:01 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2004-07-15 00:33:01 -0700 |
commit | ad5dc4b35a862383516694d2a76832625c9a98b6 (patch) | |
tree | 960c18b1f53a6910a0f7a8821fd7ced497ecaca8 /gcc/print-tree.c | |
parent | b2281cb3f20288b2f49272f3caa605888b5ecd14 (diff) | |
download | gcc-ad5dc4b35a862383516694d2a76832625c9a98b6.tar.gz |
* print-tree.c (print_node): Fix casts last change.
From-SVN: r84745
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r-- | gcc/print-tree.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c index 482f67c1bc4..5d23a6e0d18 100644 --- a/gcc/print-tree.c +++ b/gcc/print-tree.c @@ -749,9 +749,11 @@ print_node (FILE *file, const char *prefix, tree node, int indent) { indent_to (file, indent + 3); if (SSA_NAME_PTR_INFO (node)) - fprintf (file, " ptr-info %p", SSA_NAME_PTR_INFO (node)); + fprintf (file, " ptr-info %p", + (void *) SSA_NAME_PTR_INFO (node)); if (SSA_NAME_VALUE (node)) - fprintf (file, " value %p", SSA_NAME_VALUE (node)); + fprintf (file, " value %p", + (void *) SSA_NAME_VALUE (node)); if (SSA_NAME_AUX (node)) fprintf (file, " aux %p", SSA_NAME_AUX (node)); } |