From: Rafael Espindola Date: Thu, 24 Jul 2014 04:09:04 +0000 (+0000) Subject: Remove unused substitution. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=897105001238e442118ed77561f5e55935dd0d0e;p=oota-llvm.git Remove unused substitution. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213839 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/lit.cfg b/test/lit.cfg index 4f015267c61..844cb2bb516 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -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':