Commit e0b77418 by Ahmad Sharif Committed by Ahmad Sharif

* value-prof.c (check_counter): Corrected error message.

From-SVN: r169387
parent 0cd98787
2011-01-28 Ahmad Sharif <asharif@google.com>
* value-prof.c (check_counter): Corrected error message.
2011-01-29 Jie Zhang <jie@codesourcery.com> 2011-01-29 Jie Zhang <jie@codesourcery.com>
* config/arm/arm.c (arm_legitimize_reload_address): New. * config/arm/arm.c (arm_legitimize_reload_address): New.
......
...@@ -474,8 +474,12 @@ check_counter (gimple stmt, const char * name, ...@@ -474,8 +474,12 @@ check_counter (gimple stmt, const char * name,
else else
{ {
error_at (locus, "corrupted value profile: %s " error_at (locus, "corrupted value profile: %s "
"profiler overall count (%d) does not match BB count (%d)", "profile counter (%d out of %d) inconsistent with "
name, (int)*all, (int)bb_count); "basic-block count (%d)",
name,
(int) *count,
(int) *all,
(int) bb_count);
return true; return true;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment