Remove outdated CMake MSVC workaround

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210421 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Alp Toker 2014-06-08 07:37:17 +00:00
parent cd1f08ca2e
commit aa59bc24a5

View File

@ -4,11 +4,5 @@ add_llvm_library(LLVMAArch64Disassembler
AArch64Disassembler.cpp AArch64Disassembler.cpp
AArch64ExternalSymbolizer.cpp AArch64ExternalSymbolizer.cpp
) )
# workaround for hanging compilation on MSVC8, 9 and 10
#if( MSVC_VERSION EQUAL 1400 OR MSVC_VERSION EQUAL 1500 OR MSVC_VERSION EQUAL 1600 )
#set_property(
# SOURCE ARMDisassembler.cpp
# PROPERTY COMPILE_FLAGS "/Od"
# )
#endif()
add_dependencies(LLVMAArch64Disassembler AArch64CommonTableGen) add_dependencies(LLVMAArch64Disassembler AArch64CommonTableGen)