Makefile.in (LOOSE_WARN, [...]): Update comments.
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Thu, 10 Jul 2008 18:45:25 +0000 (18:45 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Thu, 10 Jul 2008 18:45:25 +0000 (18:45 +0000)
* 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

gcc/ChangeLog
gcc/Makefile.in
gcc/configure
gcc/configure.ac

index caf2bd5afc75870882303d28216731fc505bdb24..e5d68ed6ef889482cf068869b48e8228c397267e 100644 (file)
@@ -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-*-*,
index 93acc465e0748f41b1435383dbfd59ae442a3152..1617adcbf4042f2ad40e7ba8ef1a7e954407ff94 100644 (file)
@@ -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@
index beb1b81314b2d115f6a556b31a4e90983a85bd5d..09d2768e669c489c11a0b48883c1da0f3b8164e9 100755 (executable)
@@ -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`
 
index dd62e956e653cfc867435d5aeb3f7ff074d52ee1..d5244bd380094ebccef01476e39993ba02c53656 100644 (file)
@@ -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])