summaryrefslogtreecommitdiff
path: root/autoconf
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2012-02-28 19:26:56 +0000
committerChandler Carruth <chandlerc@gmail.com>2012-02-28 19:26:56 +0000
commit3c2e5f2140ade86ff353b27b37137d493f487558 (patch)
tree00d54b4b2c5022654cab36d44ca9890e9d55c988 /autoconf
parentc94206e5521d06d196a290e0c4431150e6be031b (diff)
downloadllvm-3c2e5f2140ade86ff353b27b37137d493f487558.tar.gz
llvm-3c2e5f2140ade86ff353b27b37137d493f487558.tar.bz2
llvm-3c2e5f2140ade86ff353b27b37137d493f487558.tar.xz
Temporarily revert r151609, which enabled a new warning for LLVM and
Clang builds. The detection logic for compilers that support the warning isn't working. Rafael is going to investigate it, but didn't want people to have to wade through build spam until then. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151649 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac3
1 files changed, 1 insertions, 2 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index b28508e67c..3a86531a9d 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -1115,8 +1115,7 @@ dnl Check optional compiler flags.
AC_MSG_CHECKING([optional compiler flags])
CXX_FLAG_CHECK(NO_VARIADIC_MACROS, [-Wno-variadic-macros])
CXX_FLAG_CHECK(NO_MISSING_FIELD_INITIALIZERS, [-Wno-missing-field-initializers])
-CXX_FLAG_CHECK(COVERED_SWITCH_DEFAULT, [-Wcovered-switch-default])
-AC_MSG_RESULT([$NO_VARIADIC_MACROS $NO_MISSING_FIELD_INITIALIZERS $COVERED_SWITCH_DEFAULT])
+AC_MSG_RESULT([$NO_VARIADIC_MACROS $NO_MISSING_FIELD_INITIALIZERS])
dnl===-----------------------------------------------------------------------===
dnl===