forked from OSchip/llvm-project
lib/Target/ARM/CMakeLists.txt: Disable optimization in ARMISelLowering.cpp also on MSC15(aka VS9). Seems miscompiled.
llvm-svn: 144794
This commit is contained in:
parent
7ae5d9c4c0
commit
b345060a85
|
@ -62,8 +62,8 @@ add_llvm_library_dependencies(LLVMARMCodeGen
|
|||
LLVMTarget
|
||||
)
|
||||
|
||||
# workaround for hanging compilation on MSVC10
|
||||
if( MSVC_VERSION EQUAL 1600 )
|
||||
# workaround for hanging compilation on MSVC9, 10
|
||||
if( MSVC_VERSION EQUAL 1600 OR MSVC_VERSION EQUAL 1500 )
|
||||
set_property(
|
||||
SOURCE ARMISelLowering.cpp
|
||||
PROPERTY COMPILE_FLAGS "/Od"
|
||||
|
|
Loading…
Reference in New Issue