summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorYaron Keren <yaron.keren@gmail.com>2014-03-04 09:23:33 +0000
committerYaron Keren <yaron.keren@gmail.com>2014-03-04 09:23:33 +0000
commitb62b44ccc5a6b147a41766bb39bc662fb0c589bd (patch)
treefc53df34fc8f3d5d1fc15f4a36bdc2657ae0dba9 /unittests
parent13f0d301e80d5bb43924d049ac7a3f853df20394 (diff)
downloadllvm-b62b44ccc5a6b147a41766bb39bc662fb0c589bd.tar.gz
llvm-b62b44ccc5a6b147a41766bb39bc662fb0c589bd.tar.bz2
llvm-b62b44ccc5a6b147a41766bb39bc662fb0c589bd.tar.xz
Cleaning up a bunch of pre-Visual C++ 2012 build hacks.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202806 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/ADT/CMakeLists.txt9
-rw-r--r--unittests/IR/CMakeLists.txt6
2 files changed, 0 insertions, 15 deletions
diff --git a/unittests/ADT/CMakeLists.txt b/unittests/ADT/CMakeLists.txt
index f26ac02feb..88e8186f33 100644
--- a/unittests/ADT/CMakeLists.txt
+++ b/unittests/ADT/CMakeLists.txt
@@ -41,15 +41,6 @@ set(ADTSources
polymorphic_ptr_test.cpp
)
-# They cannot be compiled on MSVC9 due to its bug.
-if(MSVC AND MSVC_VERSION LESS 1600)
- set(LLVM_OPTIONAL_SOURCES
- DenseMapTest.cpp
- SmallVectorTest.cpp
- )
- list(REMOVE_ITEM ADTSources ${LLVM_OPTIONAL_SOURCES})
-endif()
-
add_llvm_unittest(ADTTests
${ADTSources}
)
diff --git a/unittests/IR/CMakeLists.txt b/unittests/IR/CMakeLists.txt
index a597a3524a..305079f2dd 100644
--- a/unittests/IR/CMakeLists.txt
+++ b/unittests/IR/CMakeLists.txt
@@ -25,12 +25,6 @@ set(IRSources
WaymarkTest.cpp
)
-# MSVC9 and 8 cannot compile ValueMapTest.cpp due to their bug.
-# See issue#331418 in Visual Studio.
-if(MSVC AND MSVC_VERSION LESS 1600)
- list(REMOVE_ITEM IRSources ValueMapTest.cpp)
-endif()
-
# HACK: Declare a couple of source files as optionally compiled to satisfy the
# missing-file-checker in LLVM's weird CMake build.
set(LLVM_OPTIONAL_SOURCES