From: Seongbae Park Date: Wed, 28 May 2008 22:03:14 +0000 (+0000) Subject: value-prof.c (tree_ic_transform): Use HOST_WIDEST_INT_PRINT_DEC for printing gcov_type. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=68bb68ca00d81fc900219c3d503a653f663e974b;p=gcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 406a0839a10..9c10b88973f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +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 diff --git a/gcc/value-prof.c b/gcc/value-prof.c index 61b0a0773a2..fbefc97a46d 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;