summaryrefslogtreecommitdiffstats
path: root/llvm/cmake/modules
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2015-10-01 00:44:21 +0000
committerDavid Blaikie <dblaikie@gmail.com>2015-10-01 00:44:21 +0000
commit74d88066352b98e85740105570d195807447ccf4 (patch)
tree37127128f97d0efa43d5ad631cd6b269f52f3c06 /llvm/cmake/modules
parent0f625f42fdfad168fc8c0ae2ecbc72093ad5ee75 (diff)
downloadbcm5719-llvm-74d88066352b98e85740105570d195807447ccf4.tar.gz
bcm5719-llvm-74d88066352b98e85740105570d195807447ccf4.zip
Revert "Enable -Wdeprecated in the cmake build now that LLVM (& Clang, Polly, and LLD) are -Wdeprecated clean"
This reverts commit r248963. Seems there's some standard libraries (and libcxxabi implementations) that aren't -Wdeprecated clean... hrm. llvm-svn: 248972
Diffstat (limited to 'llvm/cmake/modules')
-rw-r--r--llvm/cmake/modules/HandleLLVMOptions.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/cmake/modules/HandleLLVMOptions.cmake b/llvm/cmake/modules/HandleLLVMOptions.cmake
index 046187aa59d..e0bea6470fb 100644
--- a/llvm/cmake/modules/HandleLLVMOptions.cmake
+++ b/llvm/cmake/modules/HandleLLVMOptions.cmake
@@ -364,7 +364,7 @@ if( MSVC )
elseif( LLVM_COMPILER_IS_GCC_COMPATIBLE )
if (LLVM_ENABLE_WARNINGS)
- append("-Wall -W -Wno-unused-parameter -Wwrite-strings -Wdeprecated" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
+ append("-Wall -W -Wno-unused-parameter -Wwrite-strings" CMAKE_C_FLAGS CMAKE_CXX_FLAGS)
append("-Wcast-qual" CMAKE_CXX_FLAGS)
# Turn off missing field initializer warnings for gcc to avoid noise from
OpenPOWER on IntegriCloud