diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2009-10-05 19:54:18 +0000 |
---|---|---|
committer | Ralf Wildenhues <rwild@gcc.gnu.org> | 2009-10-05 19:54:18 +0000 |
commit | da66774323ba38c87f876555a62a83867bd7e706 (patch) | |
tree | 52502d536833b7b6b97263db7de60bbf4b4b9832 /gcc | |
parent | 4a24ddb979d2c087f4c354199dab8bb826d59a45 (diff) | |
download | gcc-da66774323ba38c87f876555a62a83867bd7e706.zip gcc-da66774323ba38c87f876555a62a83867bd7e706.tar.gz gcc-da66774323ba38c87f876555a62a83867bd7e706.tar.bz2 |
Fix check_warning_flags warnings.
gcc/:
* c.opt (Wjump-misses-init): Fix typo to enable for ObjC.
* doc/invoke.texi (Warning Options): Annotate allowed languages
for -Wunsuffixed-float-constants.
From-SVN: r152469
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/c.opt | 2 | ||||
-rw-r--r-- | gcc/doc/invoke.texi | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4c6dbef..1711cbd 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2009-10-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> + + * c.opt (Wjump-misses-init): Fix typo to enable for ObjC. + * doc/invoke.texi (Warning Options): Annotate allowed languages + for -Wunsuffixed-float-constants. + 2009-10-05 Jakub Jelinek <jakub@redhat.com> * dwarf2out.c (modified_type_die): Don't add DW_AT_name to @@ -285,7 +285,7 @@ C ObjC C++ ObjC++ Warning Warn about PCH files that are found but not used Wjump-misses-init -C Objc Var(warn_jump_misses_init) Init(-1) Warning +C ObjC Var(warn_jump_misses_init) Init(-1) Warning Warn when a jump misses a variable initialization Wlogical-op diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index 9d39624..3cb309c 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -4315,7 +4315,7 @@ minimum maximum, so we do not diagnose overlength strings in C++@. This option is implied by @option{-pedantic}, and can be disabled with @option{-Wno-overlength-strings}. -@item -Wunsuffixed-float-constants +@item -Wunsuffixed-float-constants @r{(C and Objective-C only)} @opindex Wunsuffixed-float-constants GCC will issue a warning for any floating constant that does not have |