diff options
author | Tobias Burnus <burnus@net-b.de> | 2007-09-07 12:46:49 +0200 |
---|---|---|
committer | Tobias Burnus <burnus@gcc.gnu.org> | 2007-09-07 12:46:49 +0200 |
commit | f85138bc84767bdbf1e405461578432629df11a7 (patch) | |
tree | 065acf1ddad1f11da42c0b67265aa77f03f09fdc /gcc | |
parent | d4ef8a0bbc3f597d4425289b41e8df7c6eb25f8e (diff) | |
download | gcc-f85138bc84767bdbf1e405461578432629df11a7.zip gcc-f85138bc84767bdbf1e405461578432629df11a7.tar.gz gcc-f85138bc84767bdbf1e405461578432629df11a7.tar.bz2 |
re PR middle-end/33321 (gcc manpage contains "@option<-Wstrict-overflow=1>")
2007-09-07 Tobias Burnus <burnus@net-b.de>
PR middle-end/33321
* doc/invoke.texi: Fix -Wstrict-overflow= table.
From-SVN: r128238
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/invoke.texi | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ebf17b4..bf2bc14 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-09-07 Tobias Burnus <burnus@net-b.de> + + PR middle-end/33321 + * doc/invoke.texi: Fix -Wstrict-overflow= table. + 2007-09-07 Richard Guenther <rguenther@suse.de> Revert diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index aafc74c..0761733 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -3124,7 +3124,7 @@ undefined signed overflow when estimating how many iterations a loop will require, in particular when determining whether a loop will be executed at all. -@table @option +@table @gcctabopt @item -Wstrict-overflow=1 Warn about cases which are both questionable and easy to avoid. For example: @code{x + 1 > x}; with @option{-fstrict-overflow}, the |