diff options
author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2017-04-24 21:27:47 +0000 |
---|---|---|
committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2017-04-24 21:27:47 +0000 |
commit | 0b11403d55ce34447efcb9a163df8c896fa31ced (patch) | |
tree | 4103bdcf2f7422a1dfd9d40ad8f4cfb028dbbfe1 | |
parent | 2c201068dd7b44323f45302c61763a02851321e2 (diff) | |
download | bcm5719-llvm-0b11403d55ce34447efcb9a163df8c896fa31ced.tar.gz bcm5719-llvm-0b11403d55ce34447efcb9a163df8c896fa31ced.zip |
[cfi] Fix wrong CMake condition for WIN32.
llvm-svn: 301257
-rw-r--r-- | compiler-rt/test/cfi/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/cfi/CMakeLists.txt b/compiler-rt/test/cfi/CMakeLists.txt index 6bad910d494..fb45f2f400c 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() |