system.h (-Wc++-compat): Activate as a warning, no an error.
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Thu, 19 Jun 2008 17:03:46 +0000 (17:03 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Thu, 19 Jun 2008 17:03:46 +0000 (17:03 +0000)
* system.h (-Wc++-compat): Activate as a warning, no an error.

From-SVN: r136955

gcc/ChangeLog
gcc/system.h

index 50bb34bdddc4b4c0103e388a33d14f6ca16c1e51..03547b60f12ca19569b96772681ec1afb0a326d2 100644 (file)
@@ -1,3 +1,7 @@
+2008-06-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * system.h (-Wc++-compat): Activate as a warning, no an error.
+
 2008-06-19  Uros Bizjak  <ubizjak@gmail.com>
 
        * config/i386/i386.h (ix86_tune_indices)
index 8e06b2d6fef00d84aab88a9505f112a3ab379d52..363d7398c5ba6ce9b7f94a9c4247c20ea5654765 100644 (file)
@@ -797,9 +797,11 @@ extern void fancy_abort (const char *, int, const char *) ATTRIBUTE_NORETURN;
 #define CONST_CAST_RTX(X) CONST_CAST(struct rtx_def *, (X))
 #define CONST_CAST_BB(X) CONST_CAST(struct basic_block_def *, (X))
 
-/* Activate -Wcast-qual as a warning (not an error/-Werror).  */
+/* Activate -Wcast-qual and -Wc++-compat as warnings (not errors via
+   the -Werror flag).  */
 #if GCC_VERSION >= 4003
 #pragma GCC diagnostic warning "-Wcast-qual"
+#pragma GCC diagnostic warning "-Wc++-compat"
 /* If asserts are disabled, activate -Wuninitialized as a warning (not
    an error/-Werror).  */
 #ifndef ENABLE_ASSERT_CHECKING