summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Pilgrim <llvm-dev@redking.me.uk>2019-05-10 10:22:13 +0000
committerSimon Pilgrim <llvm-dev@redking.me.uk>2019-05-10 10:22:13 +0000
commita2ab528c4ca8d03846ebf6ce42efd6424a6556f1 (patch)
tree82d061b691f2f00e53f4344368f9c603a40fa753
parent93b6aa07519753beab6e7410700e4d0c569d5890 (diff)
downloadbcm5719-llvm-a2ab528c4ca8d03846ebf6ce42efd6424a6556f1.tar.gz
bcm5719-llvm-a2ab528c4ca8d03846ebf6ce42efd6424a6556f1.zip
[cmake] Remove MSVC C4800 override
Remove C4800 : ''type' : forcing value to bool 'true' or 'false' (performance warning)' from the list of forced disabled warnings. I'm not seeing any regressions in VS2017/VS2019 llvm/clang builds from removing this. Differential Revision: https://reviews.llvm.org/D61730 llvm-svn: 360417
-rw-r--r--llvm/cmake/modules/HandleLLVMOptions.cmake1
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/cmake/modules/HandleLLVMOptions.cmake b/llvm/cmake/modules/HandleLLVMOptions.cmake
index 2bc884129b7..ada9a680649 100644
--- a/llvm/cmake/modules/HandleLLVMOptions.cmake
+++ b/llvm/cmake/modules/HandleLLVMOptions.cmake
@@ -519,7 +519,6 @@ if (MSVC)
-wd4503 # Suppress ''identifier' : decorated name length exceeded, name was truncated'
-wd4624 # Suppress ''derived class' : destructor could not be generated because a base class destructor is inaccessible'
-wd4722 # Suppress 'function' : destructor never returns, potential memory leak
- -wd4800 # Suppress ''type' : forcing value to bool 'true' or 'false' (performance warning)'
-wd4100 # Suppress 'unreferenced formal parameter'
-wd4127 # Suppress 'conditional expression is constant'
-wd4512 # Suppress 'assignment operator could not be generated'
OpenPOWER on IntegriCloud