aboutsummaryrefslogtreecommitdiffstats
path: root/test/LTO
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-09-30 16:32:51 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-09-30 16:32:51 +0000
commit4b5205d2a3e0df909f29de0bff8ea775ad21fe0f (patch)
treeaa3c07ca616abe728795bd407448e6f5ecf1bc0e /test/LTO
parent9724873c317d2b170cfea87cdf2a402fcd7c6c7d (diff)
downloadexternal_llvm-4b5205d2a3e0df909f29de0bff8ea775ad21fe0f.zip
external_llvm-4b5205d2a3e0df909f29de0bff8ea775ad21fe0f.tar.gz
external_llvm-4b5205d2a3e0df909f29de0bff8ea775ad21fe0f.tar.bz2
Revert "Enable building LTO on WIN32."
This reverts commit r191670. It was causing build failures on the msvc bots: http://bb.pgr.jp/builders/ninja-clang-i686-msc17-R/builds/5166/steps/compile/logs/stdio git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191679 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/LTO')
-rw-r--r--test/LTO/cfi_endproc.ll1
-rw-r--r--test/LTO/lit.local.cfg2
2 files changed, 2 insertions, 1 deletions
diff --git a/test/LTO/cfi_endproc.ll b/test/LTO/cfi_endproc.ll
index ecb0ed5..0a47b02 100644
--- a/test/LTO/cfi_endproc.ll
+++ b/test/LTO/cfi_endproc.ll
@@ -17,3 +17,4 @@ 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 7a70736..f61943a 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']:
+if config.root.host_os in ['Cygwin', 'MingW', 'Windows']:
config.unsupported = True