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:
NAKAMURA Takumi 2011-11-16 09:18:28 +00:00
parent 7ae5d9c4c0
commit b345060a85
1 changed files with 2 additions and 2 deletions

View File

@ -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"