Index: gcc/profile.c |
=================================================================== |
--- gcc/profile.c (revision 180106) |
+++ gcc/profile.c (working copy) |
@@ -414,7 +414,7 @@ |
if (flag_profile_correction) |
{ |
static bool informed = 0; |
- if (!informed) |
+ if ((flag_opt_info >= OPT_INFO_MAX) && !informed) |
inform (input_location, |
"corrupted profile info: edge count exceeds maximal count"); |
informed = 1; |
@@ -635,7 +635,7 @@ |
{ |
/* Inconsistency detected. Make it flow-consistent. */ |
static int informed = 0; |
- if (informed == 0) |
+ if ((flag_opt_info >= OPT_INFO_MAX) && informed == 0) |
{ |
informed = 1; |
inform (input_location, "correcting inconsistent profile data"); |