diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-02-28 19:26:56 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-02-28 19:26:56 +0000 |
commit | 0bd3913d9607b273b239a3ddb5199bc38b818658 (patch) | |
tree | a7188823ae22c540beca5da3e6f31ca4d2de354f /llvm/autoconf/configure.ac | |
parent | e0a7c28627fecb00aad5cefca98c57d0fdc987de (diff) | |
download | bcm5719-llvm-0bd3913d9607b273b239a3ddb5199bc38b818658.tar.gz bcm5719-llvm-0bd3913d9607b273b239a3ddb5199bc38b818658.zip |
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.
llvm-svn: 151649
Diffstat (limited to 'llvm/autoconf/configure.ac')
-rw-r--r-- | llvm/autoconf/configure.ac | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/autoconf/configure.ac b/llvm/autoconf/configure.ac index b28508e67c4..3a86531a9d9 100644 --- a/llvm/autoconf/configure.ac +++ b/llvm/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=== |