mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-10 05:50:28 +08:00
profile.c: Update calls to inform.
2008-08-20 Manuel Lopez-Ibanez <manu@gcc.gnu.org> * profile.c: Update calls to inform. * value-prof.c: Update calls to inform. From-SVN: r139294
This commit is contained in:
parent
1f5b386928
commit
5b6148c5b5
@ -1,3 +1,8 @@
|
||||
2008-08-20 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
|
||||
|
||||
* profile.c: Update calls to inform.
|
||||
* value-prof.c: Update calls to inform.
|
||||
|
||||
2008-08-20 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
|
||||
|
||||
* diagnostic.c (inform): Add an explicit location_t parameter.
|
||||
|
@ -579,7 +579,7 @@ compute_branch_probabilities (void)
|
||||
if (informed == 0)
|
||||
{
|
||||
informed = 1;
|
||||
inform ("correcting inconsistent profile data");
|
||||
inform (input_location, "correcting inconsistent profile data");
|
||||
}
|
||||
correct_negative_edge_counts ();
|
||||
/* Set bb counts to the sum of the outgoing edge counts */
|
||||
|
@ -464,9 +464,9 @@ check_counter (gimple stmt, const char * name,
|
||||
: DECL_SOURCE_LOCATION (current_function_decl);
|
||||
if (flag_profile_correction)
|
||||
{
|
||||
inform ("%HCorrecting inconsistent value profile: "
|
||||
inform (locus, "Correcting inconsistent value profile: "
|
||||
"%s profiler overall count (%d) does not match BB count "
|
||||
"(%d)", &locus, name, (int)*all, (int)bb_count);
|
||||
"(%d)", name, (int)*all, (int)bb_count);
|
||||
*all = bb_count;
|
||||
if (*count > *all)
|
||||
*count = *all;
|
||||
@ -474,8 +474,9 @@ 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,
|
||||
error (locus,
|
||||
"Corrupted value profile: %s profiler overall count (%d) "
|
||||
"does not match BB count (%d)", name, (int)*all,
|
||||
(int)bb_count);
|
||||
return true;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user