[compiler-rt] r219924 - UBSAN stable runtime more generic with arm* targets
Renato Golin
renato.golin at linaro.org
Thu Oct 16 05:43:11 PDT 2014
Author: rengolin
Date: Thu Oct 16 07:43:10 2014
New Revision: 219924
URL: http://llvm.org/viewvc/llvm-project?rev=219924&view=rev
Log:
UBSAN stable runtime more generic with arm* targets
Modified:
compiler-rt/trunk/test/ubsan/lit.common.cfg
Modified: compiler-rt/trunk/test/ubsan/lit.common.cfg
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/ubsan/lit.common.cfg?rev=219924&r1=219923&r2=219924&view=diff
==============================================================================
--- compiler-rt/trunk/test/ubsan/lit.common.cfg (original)
+++ compiler-rt/trunk/test/ubsan/lit.common.cfg Thu Oct 16 07:43:10 2014
@@ -53,5 +53,5 @@ if config.host_os not in ['Linux', 'Darw
# Allow tests to use REQUIRES=stable-runtime. For use when you cannot use XFAIL
# because the test hangs or fails on one configuration and not the other.
-if config.target_arch != 'arm':
+if config.target_arch.startswith('arm') == False:
config.available_features.add('stable-runtime')
More information about the llvm-commits
mailing list