diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2017-09-15 18:55:35 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2017-09-15 18:55:35 +0000 |
commit | a02c2eaf52c2a6122f6409064c40a171a77d3bee (patch) | |
tree | b96a74904fe5b733805e294eb14dfa0029d7b16a | |
parent | 7d218f753268c430c4567a3d582c3ecc7f08ab89 (diff) | |
download | bcm5719-llvm-a02c2eaf52c2a6122f6409064c40a171a77d3bee.tar.gz bcm5719-llvm-a02c2eaf52c2a6122f6409064c40a171a77d3bee.zip |
cfi: Enable ThinLTO tests on Windows.
We now avoid using absolute symbols on Windows (D37407 and D37408),
so this should work.
Fixes PR32770.
Differential Revision: https://reviews.llvm.org/D37883
llvm-svn: 313379
-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 0bad50e2dff..3313fb23342 100644 --- a/compiler-rt/test/cfi/CMakeLists.txt +++ b/compiler-rt/test/cfi/CMakeLists.txt @@ -33,8 +33,8 @@ if (APPLE) # FIXME: enable ThinLTO tests after fixing http://llvm.org/pr32741 add_cfi_test_suites(False False) elseif(WIN32) - # FIXME: enable ThinLTO tests after fixing http://llvm.org/pr32770 add_cfi_test_suites(True False) + add_cfi_test_suites(True True) else() if (CFI_SUPPORTED_ARCH) add_cfi_test_suites(False False) |