From: Richard Henderson Date: Thu, 15 Jul 2004 07:33:01 +0000 (-0700) Subject: * print-tree.c (print_node): Fix casts last change. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ad5dc4b35a862383516694d2a76832625c9a98b6;p=gcc.git * print-tree.c (print_node): Fix casts last change. From-SVN: r84745 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index badfc8c32f4..0448de842ad 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-07-14 Richard Henderson + + * print-tree.c (print_node): Fix casts last change. + 2004-07-15 Paul Brook * dwarf2out.c (dwarf2out_begin_prologue): Rename IA64_UNWIND_INFO 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)); }