summaryrefslogtreecommitdiff
path: root/cmake/Modules
diff options
context:
space:
mode:
authorVedant Kumar <vsk@apple.com>2017-09-01 23:49:22 +0000
committerVedant Kumar <vsk@apple.com>2017-09-01 23:49:22 +0000
commitb66aeedd0667813d305f4c4091c53d22da094c7a (patch)
treeb05d20df7bf4be1422f1667a101ef9eba44bd130 /cmake/Modules
parent160179b335b9dd2c22b151e5eb0aff983db202db (diff)
[cmake] Remove accidentally committed warning messages
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@312393 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake/Modules')
-rw-r--r--cmake/Modules/AddCompilerRT.cmake2
1 files changed, 0 insertions, 2 deletions
diff --git a/cmake/Modules/AddCompilerRT.cmake b/cmake/Modules/AddCompilerRT.cmake
index 032b43723..622292ede 100644
--- a/cmake/Modules/AddCompilerRT.cmake
+++ b/cmake/Modules/AddCompilerRT.cmake
@@ -129,12 +129,10 @@ function(add_compiler_rt_runtime name type)
if(APPLE)
foreach(os ${LIB_OS})
# Strip out -msse3 if this isn't macOS.
- message(WARNING "BEFORE: ${LIB_CFLAGS}")
list(LENGTH LIB_CFLAGS HAS_EXTRA_CFLAGS)
if(HAS_EXTRA_CFLAGS AND NOT "${os}" MATCHES "^(osx)$")
list(REMOVE_ITEM LIB_CFLAGS "-msse3")
endif()
- message(WARNING "AFTER: ${LIB_CFLAGS}")
if(type STREQUAL "STATIC")
set(libname "${name}_${os}")
else()