From: Evgeniy Stepanov Date: Mon, 24 Apr 2017 21:27:47 +0000 (+0000) Subject: [cfi] Fix wrong CMake condition for WIN32. X-Git-Tag: llvmorg-5.0.0-rc1~6795 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0b11403d55ce34447efcb9a163df8c896fa31ced;p=platform%2Fupstream%2Fllvm.git [cfi] Fix wrong CMake condition for WIN32. llvm-svn: 301257 --- diff --git a/compiler-rt/test/cfi/CMakeLists.txt b/compiler-rt/test/cfi/CMakeLists.txt index 6bad910..fb45f2f 100644 --- a/compiler-rt/test/cfi/CMakeLists.txt +++ b/compiler-rt/test/cfi/CMakeLists.txt @@ -32,7 +32,7 @@ endmacro() if (APPLE) # FIXME: enable ThinLTO tests after fixing http://llvm.org/pr32741 add_cfi_test_suites(False False) -elseif(WINDOWS) +elseif(WIN32) # FIXME: enable ThinLTO tests after fixing http://llvm.org/pr32770 add_cfi_test_suites(True False) else()