From: Martin Storsjo Date: Sat, 12 Oct 2019 06:40:24 +0000 (+0000) Subject: [lit] Remove setting of the target-windows feature X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ce2e7627d6d7b153f14d4ec4e23cb963fdd36312;p=llvm [lit] Remove setting of the target-windows feature No other OSes use a target- feature, and no tests depend on it any lomger. Differential Revision: https://reviews.llvm.org/D68450 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@374639 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/lit/lit/llvm/config.py b/utils/lit/lit/llvm/config.py index 6a0bfa1b207..2f3ca961a28 100644 --- a/utils/lit/lit/llvm/config.py +++ b/utils/lit/lit/llvm/config.py @@ -93,8 +93,6 @@ class LLVMConfig(object): 'ASAN_OPTIONS', 'detect_leaks=1', append_path=True) if re.match(r'^x86_64.*-linux', target_triple): features.add('x86_64-linux') - if re.match(r'.*-windows-msvc$', target_triple): - features.add('target-windows') if re.match(r'^i.86.*', target_triple): features.add('target-x86') elif re.match(r'^x86_64.*', target_triple):