diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2003-07-08 00:35:52 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2003-07-08 00:35:52 +0000 |
commit | 75b6f3fd3a00de216b2a38fb3ad2da80e08979f1 (patch) | |
tree | ff36bca69b7fbedb7d6cc5611fbd918944314e77 /gcc/print-rtl.c | |
parent | afeeac3f8845c16d6165f59b1823f89dbca569bb (diff) | |
download | gcc-75b6f3fd3a00de216b2a38fb3ad2da80e08979f1.tar.gz |
bitmap.c (debug_bitmap_file): Merge uses of HOST_PTR_PRINTF with adjacent stdio calls.
gcc:
* bitmap.c (debug_bitmap_file): Merge uses of HOST_PTR_PRINTF with
adjacent stdio calls.
* c-decl.c (c_print_identifier): Likewise.
* mips-tfile.c (write_varray, write_object, allocate_cluster): Likewise.
* print-rtl.c (print_rtx): Likewise.
* print-tree.c (print_node_brief, print_node): Likewise.
* system.h (HOST_PTR_PRINTF): Ensure we have a literal string.
* configure.in (AC_COMPILE_CHECK_SIZEOF): Check for `void *'.
* config.in, configure: Regenerated.
cp:
* decl.c (print_binding_level, print_other_binding_stack,
print_binding_stack): Merge uses of HOST_PTR_PRINTF with adjacent
stdio calls.
* ptree.c (cxx_print_decl, cxx_print_binding): Likewise.
From-SVN: r69061
Diffstat (limited to 'gcc/print-rtl.c')
-rw-r--r-- | gcc/print-rtl.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c index ebc0eaeba1b..b46d1c6181b 100644 --- a/gcc/print-rtl.c +++ b/gcc/print-rtl.c @@ -501,8 +501,7 @@ print_rtx (rtx in_rtx) break; case 't': - putc (' ', outfile); - fprintf (outfile, HOST_PTR_PRINTF, (char *) XTREE (in_rtx, i)); + fprintf (outfile, " " HOST_PTR_PRINTF, (void *) XTREE (in_rtx, i)); break; case '*': |