mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-05 02:07:56 +00:00
Use pre-python 2.5 syntax in lit.cfg.
Author: Quentin Neill <qneill@codeaurora.org> llvm-svn: 166217
This commit is contained in:
parent
2e267f64cb
commit
324f8ad699
@ -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