From d48bd3ca378c291bd1555a7f1e4667a0aa018c2c Mon Sep 17 00:00:00 2001 From: Andrew Kaylor Date: Fri, 20 Sep 2013 22:12:03 +0000 Subject: Fix some more MCJIT PIC test XFAILs (for i386) Patch by Dimitry Andric git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191111 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/lit.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/lit.cfg') diff --git a/test/lit.cfg b/test/lit.cfg index ea9303d..bb4635e 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -173,7 +173,7 @@ jit_impl_cfg = lit_config.params.get('jit_impl', None) if jit_impl_cfg == 'mcjit': # When running with mcjit, mangle -mcjit into target triple # and add -use-mcjit flag to lli invocation - if 'i686' in config.target_triple: + if 'i386' in config.target_triple or 'i686' in config.target_triple: config.target_triple += jit_impl_cfg + '-ia32' elif 'x86_64' in config.target_triple: config.target_triple += jit_impl_cfg + '-ia64' -- cgit v1.1