diff options
author | Kelley Cook <kcook@gcc.gnu.org> | 2003-10-31 12:41:34 +0000 |
---|---|---|
committer | R. Kelley Cook <kcook@gcc.gnu.org> | 2003-10-31 12:41:34 +0000 |
commit | a2ae4a3dd076a9f940e2f3fd077895c27636385a (patch) | |
tree | f5fa230e2d512f7225f212bc02c0a7fa6bb5f28d /gcc | |
parent | acd8e9843ff0995ad27dd8df79c61c61418df9a7 (diff) | |
download | gcc-a2ae4a3dd076a9f940e2f3fd077895c27636385a.zip gcc-a2ae4a3dd076a9f940e2f3fd077895c27636385a.tar.gz gcc-a2ae4a3dd076a9f940e2f3fd077895c27636385a.tar.bz2 |
* Makefile.in (STRICT2_WARN): Add -Wold-style-definition
From-SVN: r73138
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 528def53..2fc1859 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-10-31 Kelley Cook <kcook@gcc.gnu.org> + + * Makefile.in (STRICT2_WARN): Add -Wold-style-definition. + 2003-10-31 Richard Earnshaw <rearnsha@arm.com> PR target/11271 diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 492f88b..0ecca9c 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -164,7 +164,7 @@ coverageexts = .{gcda,gcno} # stage1, as not all versions of gcc understand -Wno-long-long. LOOSE_WARN = -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes STRICT_WARN = @strict1_warn@ -STRICT2_WARN = -pedantic -Wno-long-long @WERROR@ +STRICT2_WARN = -pedantic -Wno-long-long -Wold-style-definition @WERROR@ # This is set by --enable-checking. The idea is to catch forgotten # "extern" tags in header files. |