summaryrefslogtreecommitdiff
path: root/test/lit.common.cfg
diff options
context:
space:
mode:
authorMichal Gorny <mgorny@gentoo.org>2017-08-27 20:37:06 +0000
committerMichal Gorny <mgorny@gentoo.org>2017-08-27 20:37:06 +0000
commitcc44d7c1f1d3e45e338faf2ecc4fb43c58dda330 (patch)
tree521e9eb77919a11073f2599fa1870977091b2b4f /test/lit.common.cfg
parent7cbce19925c4686ac96ff7e4ae38b42642dcdc3e (diff)
Revert r311842 - [cmake] Remove i686 target that is duplicate to i386
The required change in clang is being reverted because of the Android build bot failure. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@311859 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/lit.common.cfg')
-rw-r--r--test/lit.common.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lit.common.cfg b/test/lit.common.cfg
index 4f23ab285..6080edca4 100644
--- a/test/lit.common.cfg
+++ b/test/lit.common.cfg
@@ -135,7 +135,7 @@ config.substitutions.append( ("%expect_crash ", config.expect_crash) )
target_arch = getattr(config, 'target_arch', None)
if target_arch:
config.available_features.add(target_arch + '-target-arch')
- if target_arch in ['x86_64', 'i386']:
+ if target_arch in ['x86_64', 'i386', 'i686']:
config.available_features.add('x86-target-arch')
config.available_features.add(target_arch + '-' + config.host_os.lower())