aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-decl.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2005-08-16 00:13:53 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2005-08-16 00:13:53 +0000
commit06145cb9b44f59899973a773983c4adfe7f21f72 (patch)
tree774ee5769490a67cd97563023ebfcb374ef18a6a /gcc/c-decl.c
parent54778d9cf50cf51781b7a1d08d963a6c8e803ac1 (diff)
downloadgcc-06145cb9b44f59899973a773983c4adfe7f21f72.zip
gcc-06145cb9b44f59899973a773983c4adfe7f21f72.tar.gz
gcc-06145cb9b44f59899973a773983c4adfe7f21f72.tar.bz2
aclocal.m4 (gcc_AC_FUNC_PRINTF_PTR): Delete.
* 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. From-SVN: r103135
Diffstat (limited to 'gcc/c-decl.c')
-rw-r--r--gcc/c-decl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c
index 903b5aa..ff35e08 100644
--- a/gcc/c-decl.c
+++ b/gcc/c-decl.c
@@ -466,7 +466,7 @@ c_print_identifier (FILE *file, tree node, int indent)
{
tree rid = ridpointers[C_RID_CODE (node)];
indent_to (file, indent + 4);
- fprintf (file, "rid " HOST_PTR_PRINTF " \"%s\"",
+ fprintf (file, "rid %p \"%s\"",
(void *) rid, IDENTIFIER_POINTER (rid));
}
}