From 68bb68ca00d81fc900219c3d503a653f663e974b Mon Sep 17 00:00:00 2001 From: Seongbae Park Date: Wed, 28 May 2008 22:03:14 +0000 Subject: [PATCH] value-prof.c (tree_ic_transform): Use HOST_WIDEST_INT_PRINT_DEC for printing gcov_type. 2008-05-28 Seongbae Park * value-prof.c (tree_ic_transform): Use HOST_WIDEST_INT_PRINT_DEC for printing gcov_type. From-SVN: r136131 --- gcc/ChangeLog | 5 +++++ gcc/value-prof.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 406a083..9c10b88 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,4 +1,9 @@ 2008-05-28 Seongbae Park + + * value-prof.c (tree_ic_transform): Use HOST_WIDEST_INT_PRINT_DEC + for printing gcov_type. + +2008-05-28 Seongbae Park * tree-ssa-propagate.c (set_rhs): Preserve the histogram and the eh region information. diff --git a/gcc/value-prof.c b/gcc/value-prof.c index 61b0a07..fbefc97 100644 --- a/gcc/value-prof.c +++ b/gcc/value-prof.c @@ -1217,7 +1217,8 @@ tree_ic_transform (tree stmt) print_generic_stmt (dump_file, stmt, TDF_SLIM); fprintf (dump_file, " to "); print_generic_stmt (dump_file, modify, TDF_SLIM); - fprintf (dump_file, "hist->count %llu hist->all %llu\n", count, all); + fprintf (dump_file, "hist->count "HOST_WIDEST_INT_PRINT_DEC + " hist->all "HOST_WIDEST_INT_PRINT_DEC"\n", count, all); } return true; -- 2.7.4