mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Use pre-python 2.5 syntax in lit.cfg.
Author: Quentin Neill <qneill@codeaurora.org> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166217 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
83ba06afa8
commit
92c39cadbc
@ -152,7 +152,10 @@ config.target_triple += lit.valgrindTriple
|
||||
|
||||
# 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
|
||||
defaultIsMCJIT='true' if 'arm' in config.target_triple else 'false'
|
||||
if 'arm' in config.target_triple:
|
||||
defaultIsMCJIT = 'true'
|
||||
else:
|
||||
defaultIsMCJIT = 'false'
|
||||
config.substitutions.append( ('%defaultjit', '-use-mcjit='+defaultIsMCJIT) )
|
||||
|
||||
# Process jit implementation option
|
||||
|
Loading…
Reference in New Issue
Block a user