* value-prof.c (check_counter): Corrected error message.
From-SVN: r169387
This commit is contained in:
parent
0cd98787c2
commit
e0b77418ce
2 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue