From: Ahmad Sharif Date: Sat, 29 Jan 2011 03:54:56 +0000 (+0000) Subject: * value-prof.c (check_counter): Corrected error message. X-Git-Tag: releases/gcc-4.6.0~884 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e0b77418ce90c353563d88ff5fab32f68cdc0bef;p=thirdparty%2Fgcc.git * value-prof.c (check_counter): Corrected error message. From-SVN: r169387 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c293fd708af1..a7c3ff35b4a5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2011-01-28 Ahmad Sharif + + * value-prof.c (check_counter): Corrected error message. + 2011-01-29 Jie Zhang * config/arm/arm.c (arm_legitimize_reload_address): New. diff --git a/gcc/value-prof.c b/gcc/value-prof.c index 0a36ed210c85..8491c776f7cf 100644 --- a/gcc/value-prof.c +++ b/gcc/value-prof.c @@ -474,8 +474,12 @@ check_counter (gimple stmt, const char * name, else { error_at (locus, "corrupted value profile: %s " - "profiler overall count (%d) does not match BB count (%d)", - name, (int)*all, (int)bb_count); + "profile counter (%d out of %d) inconsistent with " + "basic-block count (%d)", + name, + (int) *count, + (int) *all, + (int) bb_count); return true; } }