Remove unused substitution.
authorRafael Espindola <rafael.espindola@gmail.com>
Thu, 24 Jul 2014 04:09:04 +0000 (04:09 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Thu, 24 Jul 2014 04:09:04 +0000 (04:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213839 91177308-0d34-0410-b5e6-96231b3b80d8

test/lit.cfg

index 4f015267c6196643591cd95c07447450e55ee56b..844cb2bb5162ef09b154a5f4e9ab2196801baa24 100644 (file)
@@ -167,18 +167,6 @@ if re.search(r'win32', config.target_triple):
   llc_dwarf += ' -mtriple='+config.target_triple.replace('-win32', '-mingw32')
 config.substitutions.append( ('%llc_dwarf', llc_dwarf) )
 
-# Provide a substition for those tests that need to run the jit to obtain data
-# but simply want use the currently considered most reliable jit for platform
-# FIXME: ppc32 is not ready for mcjit.
-if 'arm' in config.target_triple \
-   or 'aarch64' in config.target_triple \
-   or 'powerpc64' in config.target_triple \
-   or 's390x' in config.target_triple:
-    defaultIsMCJIT = 'true'
-else:
-    defaultIsMCJIT = 'false'
-config.substitutions.append( ('%defaultjit', '-use-mcjit='+defaultIsMCJIT) )
-
 # Process jit implementation option
 jit_impl_cfg = lit_config.params.get('jit_impl', None)
 if jit_impl_cfg == 'mcjit':