diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-09-30 15:28:14 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-09-30 15:28:14 +0000 |
commit | a5b9cd1c68eda914ffcf133228824ca58e1ba518 (patch) | |
tree | fbfb2c9d295c5308bc92b9b665433fd8382366cd /test | |
parent | 6ef4dd8cb6852fd0036244a07dc944dc8fb8933c (diff) | |
download | external_llvm-a5b9cd1c68eda914ffcf133228824ca58e1ba518.zip external_llvm-a5b9cd1c68eda914ffcf133228824ca58e1ba518.tar.gz external_llvm-a5b9cd1c68eda914ffcf133228824ca58e1ba518.tar.bz2 |
Enable building LTO on WIN32.
Enable building the LTO library (.lib and.dll) and llvm-lto.exe on Windows with
MSVC and Mingw as well as re-enabling the associated test.
Patch by Greg Bedwell!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191670 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/LTO/cfi_endproc.ll | 1 | ||||
-rw-r--r-- | test/LTO/lit.local.cfg | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/test/LTO/cfi_endproc.ll b/test/LTO/cfi_endproc.ll index 0a47b02..ecb0ed5 100644 --- a/test/LTO/cfi_endproc.ll +++ b/test/LTO/cfi_endproc.ll @@ -17,4 +17,3 @@ define i32 @main(i32 %argc, i8** %argv) { call void @PR14512() ret i32 0 } -; XFAIL: win32 diff --git a/test/LTO/lit.local.cfg b/test/LTO/lit.local.cfg index f61943a..7a70736 100644 --- a/test/LTO/lit.local.cfg +++ b/test/LTO/lit.local.cfg @@ -2,5 +2,5 @@ targets = set(config.root.targets_to_build.split()) if not 'X86' in targets: config.unsupported = True -if config.root.host_os in ['Cygwin', 'MingW', 'Windows']: +if config.root.host_os in ['Cygwin']: config.unsupported = True |