diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-08-16 00:13:53 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-08-16 00:13:53 +0000 |
commit | ca0205ee617ab19b9dc4f6f322b501c57624c187 (patch) | |
tree | 774ee5769490a67cd97563023ebfcb374ef18a6a /gcc/print-tree.c | |
parent | 0ef21e140f1f09a785fa9c7cc9642924178f4de5 (diff) | |
download | gcc-ca0205ee617ab19b9dc4f6f322b501c57624c187.tar.gz |
* aclocal.m4 (gcc_AC_FUNC_PRINTF_PTR): Delete.
* configure.ac: Don't call gcc_AC_FUNC_PRINTF_PTR.
* system.h (HOST_PTR_PRINTF): Don't define, poison it.
* bitmap.c, c-decl.c, config/i386/i386-interix.h,
config/iq2000/iq2000.c, mips-tfile.c, print-rtl.c, print-tree.c:
Delete HOST_PTR_PRINTF.
* configure, config.in: Regenerate.
cp:
* name-lookup.c, ptree.c: Delete HOST_PTR_PRINTF.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@103135 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r-- | gcc/print-tree.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c index 954ee2d6a9c..ddc370b40b6 100644 --- a/gcc/print-tree.c +++ b/gcc/print-tree.c @@ -73,7 +73,7 @@ print_node_brief (FILE *file, const char *prefix, tree node, int indent) name if any. */ if (indent > 0) fprintf (file, " "); - fprintf (file, "%s <%s " HOST_PTR_PRINTF, + fprintf (file, "%s <%s %p", prefix, tree_code_name[(int) TREE_CODE (node)], (char *) node); if (class == tcc_declaration) @@ -218,7 +218,7 @@ print_node (FILE *file, const char *prefix, tree node, int indent) indent_to (file, indent); /* Print the slot this node is in, and its code, and address. */ - fprintf (file, "%s <%s " HOST_PTR_PRINTF, + fprintf (file, "%s <%s %p", prefix, tree_code_name[(int) TREE_CODE (node)], (void *) node); /* Print the name, if any. */ @@ -495,7 +495,7 @@ print_node (FILE *file, const char *prefix, tree node, int indent) && DECL_STRUCT_FUNCTION (node) != 0) { indent_to (file, indent + 4); - fprintf (file, "saved-insns " HOST_PTR_PRINTF, + fprintf (file, "saved-insns %p", (void *) DECL_STRUCT_FUNCTION (node)); } @@ -755,7 +755,7 @@ print_node (FILE *file, const char *prefix, tree node, int indent) break; case STATEMENT_LIST: - fprintf (file, " head " HOST_PTR_PRINTF " tail " HOST_PTR_PRINTF " stmts", + fprintf (file, " head %p tail %p stmts", (void *) node->stmt_list.head, (void *) node->stmt_list.tail); { tree_stmt_iterator i; @@ -763,7 +763,7 @@ print_node (FILE *file, const char *prefix, tree node, int indent) { /* Not printing the addresses of the (not-a-tree) 'struct tree_stmt_list_node's. */ - fprintf (file, " " HOST_PTR_PRINTF, (void *)tsi_stmt (i)); + fprintf (file, " %p", (void *)tsi_stmt (i)); } fprintf (file, "\n"); for (i = tsi_start (node); !tsi_end_p (i); tsi_next (&i)) |