re PR bootstrap/37153 (Revision 139210 failed to bootstrap)

2008-08-18  H.J. Lu  <hongjiu.lu@intel.com>

	PR bootstrap/37153
	* value-prof.c (check_counter): Dereference pointer to overall
	count when printing it.

From-SVN: r139211
This commit is contained in:
H.J. Lu 2008-08-18 19:48:41 +00:00 committed by H.J. Lu
parent 3aa71f9da0
commit c3a4ca0340
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2008-08-18 H.J. Lu <hongjiu.lu@intel.com>
PR bootstrap/37153
* value-prof.c (check_counter): Dereference pointer to overall
count when printing it.
2008-08-18 H.J. Lu <hongjiu.lu@intel.com>
* profile.h: Really add it.

View File

@ -466,7 +466,7 @@ check_counter (gimple stmt, const char * name,
{
inform ("%HCorrecting inconsistent value profile: "
"%s profiler overall count (%d) does not match BB count "
"(%d)", &locus, name, (int)all, (int)bb_count);
"(%d)", &locus, name, (int)*all, (int)bb_count);
*all = bb_count;
if (*count > *all)
*count = *all;
@ -475,7 +475,7 @@ check_counter (gimple stmt, const char * name,
else
{
error ("%HCorrupted value profile: %s profiler overall count (%d) "
"does not match BB count (%d)", &locus, name, (int)all,
"does not match BB count (%d)", &locus, name, (int)*all,
(int)bb_count);
return true;
}