diff options
author | James E Wilson <wilson@specifixinc.com> | 2005-07-28 23:37:18 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 2005-07-28 16:37:18 -0700 |
commit | 66f33c03f3d5d0fb3d9014f3b71c5e28fd14a1ce (patch) | |
tree | d8ad8e7a3e8d603e39dbf9273bc020a9c298e4f0 | |
parent | 8a76829ccfe1b5cb484f79a8b7ba02299f228782 (diff) | |
download | gcc-66f33c03f3d5d0fb3d9014f3b71c5e28fd14a1ce.zip gcc-66f33c03f3d5d0fb3d9014f3b71c5e28fd14a1ce.tar.gz gcc-66f33c03f3d5d0fb3d9014f3b71c5e28fd14a1ce.tar.bz2 |
Remove misleading use of the word "all".
PR c/23106
* doc/invoke.texi (Wstrict-aliasing=2): Fix misleading wording.
From-SVN: r102528
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/invoke.texi | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d599ec17..c8cc61d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-07-28 James E Wilson <wilson@specifixinc.com> + + PR c/23106 + * doc/invoke.texi (Wstrict-aliasing=2): Fix misleading wording. + 2005-07-28 Jan Hubicka <jh@suse.cz> * Makefile.in (rtl-profile.o): Kill all traces of it. diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index 398d2fc..1605f8d 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -2727,9 +2727,10 @@ included in @option{-Wall}. @item -Wstrict-aliasing=2 @opindex Wstrict-aliasing=2 This option is only active when @option{-fstrict-aliasing} is active. -It warns about all code which might break the strict aliasing rules that the -compiler is using for optimization. This warning catches all cases, but -it will also give a warning for some ambiguous cases that are safe. +It warns about code which might break the strict aliasing rules that the +compiler is using for optimization. This warning catches more cases than +@option{-Wstrict-aliasing}, but it will also give a warning for some ambiguous +cases that are safe. @item -Wall @opindex Wall |