Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1347)

Unified Diff: gcc/profile.c

Issue 5294043: [google] Suppress FDO-use related notes/warnings Base URL: svn+ssh://gcc.gnu.org/svn/gcc/branches/google/main/
Patch Set: new patches using -fopt-info Created 13 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gcc/opts.c ('k') | gcc/testsuite/g++.dg/tree-ssa/dom-invalid.C » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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");
« no previous file with comments | « gcc/opts.c ('k') | gcc/testsuite/g++.dg/tree-ssa/dom-invalid.C » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b