From 7fd11896a81550a0d7207ead64ec1846ba88a8f6 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Thu, 24 Jul 2014 04:09:04 +0000 Subject: [PATCH] Remove unused substitution. llvm-svn: 213839 --- llvm/test/lit.cfg | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/llvm/test/lit.cfg b/llvm/test/lit.cfg index 4f01526..844cb2b 100644 --- a/llvm/test/lit.cfg +++ b/llvm/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': -- 2.7.4