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>
* config/arm/arm.c (arm_legitimize_reload_address): New.
......
......@@ -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;
}
}
......
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