diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2008-07-10 18:45:25 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2008-07-10 18:45:25 +0000 |
commit | 8dd9a120a24d1fa0cd44680e37d3d746b4ce7488 (patch) | |
tree | 923e67cbf2580563bed00a7d86733723f0978c9f | |
parent | e68152b607d95496a9eb81b0aa2e5c18495cf5d6 (diff) | |
download | gcc-8dd9a120a24d1fa0cd44680e37d3d746b4ce7488.zip gcc-8dd9a120a24d1fa0cd44680e37d3d746b4ce7488.tar.gz gcc-8dd9a120a24d1fa0cd44680e37d3d746b4ce7488.tar.bz2 |
Makefile.in (LOOSE_WARN, [...]): Update comments.
* Makefile.in (LOOSE_WARN, STRICT_WARN): Update comments.
* configure.ac (loose_warn): Move -Wc++-compat from here...
(strict_warn): ...to here.
* configure: Regenerate.
From-SVN: r137699
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/Makefile.in | 5 | ||||
-rwxr-xr-x | gcc/configure | 4 | ||||
-rw-r--r-- | gcc/configure.ac | 4 |
4 files changed, 13 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index caf2bd5..e5d68ed 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2008-07-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * Makefile.in (LOOSE_WARN, STRICT_WARN): Update comments. + * configure.ac (loose_warn): Move -Wc++-compat from here... + (strict_warn): ...to here. + * configure: Regenerate. + 2008-07-10 Joseph Myers <joseph@codesourcery.com> * config.gcc (arm-*-coff*, armel-*-coff*, h8300-*-*, diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 93acc46..1617adc 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -155,10 +155,9 @@ coverageexts = .{gcda,gcno} # flags from configure. The user is free to explicitly turn these flags # off if they wish. # LOOSE_WARN are the warning flags to use when compiling something -# which is only compiled with gcc, such as libgcc and the frontends -# other than C. +# which is only compiled with gcc, such as libgcc. # STRICT_WARN are the additional warning flags to -# apply to the back end and the C front end, which may be compiled +# apply to the back end and some front ends, which may be compiled # with other compilers. LOOSE_WARN = @loose_warn@ STRICT_WARN = @strict_warn@ diff --git a/gcc/configure b/gcc/configure index beb1b81..09d2768 100755 --- a/gcc/configure +++ b/gcc/configure @@ -7015,7 +7015,7 @@ fi loose_warn= save_CFLAGS="$CFLAGS" for option in -W -Wall -Wwrite-strings -Wstrict-prototypes \ - -Wmissing-prototypes -Wcast-qual -Wc++-compat; do + -Wmissing-prototypes -Wcast-qual; do as_acx_Woption=`echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh` echo "$as_me:$LINENO: checking whether $CC supports $option" >&5 @@ -7082,7 +7082,7 @@ CFLAGS="$save_CFLAGS" strict_warn= save_CFLAGS="$CFLAGS" -for option in -Wold-style-definition \ +for option in -Wold-style-definition -Wc++-compat \ -Wmissing-format-attribute; do as_acx_Woption=`echo "acx_cv_prog_cc_warning_$option" | $as_tr_sh` diff --git a/gcc/configure.ac b/gcc/configure.ac index dd62e95..d5244bd 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -323,8 +323,8 @@ AC_CHECK_TYPES([__int64], [AC_CHECK_SIZEOF(__int64)]) # So, we only use -pedantic if we can disable those warnings. ACX_PROG_CC_WARNING_OPTS([-W -Wall -Wwrite-strings -Wstrict-prototypes \ - -Wmissing-prototypes -Wcast-qual -Wc++-compat], [loose_warn]) -ACX_PROG_CC_WARNING_OPTS([-Wold-style-definition \ + -Wmissing-prototypes -Wcast-qual], [loose_warn]) +ACX_PROG_CC_WARNING_OPTS([-Wold-style-definition -Wc++-compat \ -Wmissing-format-attribute], [strict_warn]) ACX_PROG_CC_WARNING_ALMOST_PEDANTIC([-Wno-long-long -Wno-variadic-macros \ -Wno-overlength-strings], [strict_warn]) |