aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSandra Loosemore <sandra@codesourcery.com>2012-01-26 22:33:17 -0500
committerSandra Loosemore <sandra@gcc.gnu.org>2012-01-26 22:33:17 -0500
commite3bd34b856bf81f9b1cb4e44b94da0a73f94442c (patch)
treeb588891219f4fe94ce97b872b2a650318522aa4a
parentb7c0a0d45d456a8b220cd5a2a59d9bd7680ce96c (diff)
downloadgcc-e3bd34b856bf81f9b1cb4e44b94da0a73f94442c.zip
gcc-e3bd34b856bf81f9b1cb4e44b94da0a73f94442c.tar.gz
gcc-e3bd34b856bf81f9b1cb4e44b94da0a73f94442c.tar.bz2
invoke.texi (Language Independent Options): Move -Wcoverage-mismatch blurb from here....
2012-01-27 Sandra Loosemore <sandra@codesourcery.com> gcc/ * doc/invoke.texi (Language Independent Options): Move -Wcoverage-mismatch blurb from here.... (Warning Options): ...to here. From-SVN: r183602
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/doc/invoke.texi30
2 files changed, 21 insertions, 15 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 9c9f7cc..c832da9 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2012-01-27 Sandra Loosemore <sandra@codesourcery.com>
+
+ * doc/invoke.texi (Language Independent Options): Move
+ -Wcoverage-mismatch blurb from here....
+ (Warning Options): ...to here.
+
2012-01-27 Peter Bergner <bergner@vnet.ibm.com>
* config/rs6000/rs6000.c (rs6000_option_override_internal):
diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
index e3d3789..07ced24 100644
--- a/gcc/doc/invoke.texi
+++ b/gcc/doc/invoke.texi
@@ -2869,21 +2869,6 @@ command line option that directly controls the diagnostic (if such an
option is known to the diagnostic machinery). Specifying the
@option{-fno-diagnostics-show-option} flag suppresses that behavior.
-@item -Wcoverage-mismatch
-@opindex Wcoverage-mismatch
-Warn if feedback profiles do not match when using the
-@option{-fprofile-use} option.
-If a source file was changed between @option{-fprofile-gen} and
-@option{-fprofile-use}, the files with the profile feedback can fail
-to match the source file and GCC can not use the profile feedback
-information. By default, this warning is enabled and is treated as an
-error. @option{-Wno-coverage-mismatch} can be used to disable the
-warning or @option{-Wno-error=coverage-mismatch} can be used to
-disable the error. Disable the error for this warning can result in
-poorly optimized code, so disabling the error is useful only in the
-case of very minor changes such as bug fixes to an existing code-base.
-Completely disabling the warning is not recommended.
-
@end table
@node Warning Options
@@ -3136,6 +3121,21 @@ Warn whenever a comment-start sequence @samp{/*} appears in a @samp{/*}
comment, or whenever a Backslash-Newline appears in a @samp{//} comment.
This warning is enabled by @option{-Wall}.
+@item -Wno-coverage-mismatch
+@opindex Wno-coverage-mismatch
+Warn if feedback profiles do not match when using the
+@option{-fprofile-use} option.
+If a source file was changed between @option{-fprofile-gen} and
+@option{-fprofile-use}, the files with the profile feedback can fail
+to match the source file and GCC cannot use the profile feedback
+information. By default, this warning is enabled and is treated as an
+error. @option{-Wno-coverage-mismatch} can be used to disable the
+warning or @option{-Wno-error=coverage-mismatch} can be used to
+disable the error. Disabling the error for this warning can result in
+poorly optimized code and is useful only in the
+case of very minor changes such as bug fixes to an existing code-base.
+Completely disabling the warning is not recommended.
+
@item -Wno-cpp
@r{(C, Objective-C, C++, Objective-C++ and Fortran only)}