diff options
Diffstat (limited to 'contrib/gcc/print-tree.c')
-rw-r--r-- | contrib/gcc/print-tree.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/gcc/print-tree.c b/contrib/gcc/print-tree.c index 7f9dd10..01e05f8 100644 --- a/contrib/gcc/print-tree.c +++ b/contrib/gcc/print-tree.c @@ -82,7 +82,7 @@ print_node_brief (file, prefix, node, indent) if (indent > 0) fprintf (file, " "); fprintf (file, "%s <%s ", prefix, tree_code_name[(int) TREE_CODE (node)]); - fprintf (file, HOST_PTR_PRINTF, (HOST_WIDE_INT) node); + fprintf (file, HOST_PTR_PRINTF, (void *) node); if (class == 'd') { @@ -259,7 +259,7 @@ print_node (file, prefix, node, indent) /* Print the slot this node is in, and its code, and address. */ fprintf (file, "%s <%s ", prefix, tree_code_name[(int) TREE_CODE (node)]); - fprintf (file, HOST_PTR_PRINTF, (HOST_WIDE_INT) node); + fprintf (file, HOST_PTR_PRINTF, (void *) node); /* Print the name, if any. */ if (class == 'd') @@ -456,7 +456,7 @@ print_node (file, prefix, node, indent) { fprintf (file, "saved-insns "); fprintf (file, HOST_PTR_PRINTF, - (HOST_WIDE_INT) DECL_SAVED_INSNS (node)); + (void *) DECL_SAVED_INSNS (node)); } } |