* print-tree.c (print_node): Fix casts last change.
authorRichard Henderson <rth@redhat.com>
Thu, 15 Jul 2004 07:33:01 +0000 (00:33 -0700)
committerRichard Henderson <rth@gcc.gnu.org>
Thu, 15 Jul 2004 07:33:01 +0000 (00:33 -0700)
From-SVN: r84745

gcc/ChangeLog
gcc/print-tree.c

index badfc8c..0448de8 100644 (file)
@@ -1,3 +1,7 @@
+2004-07-14  Richard Henderson  <rth@redhat.com>
+
+       * print-tree.c (print_node): Fix casts last change.
+
 2004-07-15  Paul Brook  <paul@codesourcery.com>
 
        * dwarf2out.c (dwarf2out_begin_prologue): Rename IA64_UNWIND_INFO
index 482f67c..5d23a6e 100644 (file)
@@ -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));
            }