[llvm] r213839 - Remove unused substitution.

Rafael Espindola rafael.espindola at gmail.com
Wed Jul 23 21:09:04 PDT 2014


Author: rafael
Date: Wed Jul 23 23:09:04 2014
New Revision: 213839

URL: http://llvm.org/viewvc/llvm-project?rev=213839&view=rev
Log:
Remove unused substitution.

Modified:
    llvm/trunk/test/lit.cfg

Modified: llvm/trunk/test/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/lit.cfg?rev=213839&r1=213838&r2=213839&view=diff
==============================================================================
--- llvm/trunk/test/lit.cfg (original)
+++ llvm/trunk/test/lit.cfg Wed Jul 23 23:09:04 2014
@@ -167,18 +167,6 @@ if re.search(r'win32', config.target_tri
   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':





More information about the llvm-commits mailing list