diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2017-06-07 00:22:52 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2017-06-07 00:22:52 +0000 |
commit | 4e7fb91232f427a157e9e765e0552c308578b1df (patch) | |
tree | a865a8b4ede92a6dede8f00fca77ee6a7cd5215f /test/lit.cfg | |
parent | e8e2b8ae7b4af28fb0bf1bac8adea381005fa4d6 (diff) | |
download | llvm-4e7fb91232f427a157e9e765e0552c308578b1df.tar.gz |
Introduce the new feature "abi-breaking-checks" to satisfy -reverse-iterate in llvm/test/Transforms/Util/PredicateInfo/
A few tests in llvm/test/Transforms/Util/PredicateInfo/ are using -reverse-iterate.
The option -reverse-iterate is enabled with +Asserts in usual cases, but it can be turned on/off regardless of LLVM_ENABLE_ASSERTIONS.
I wonder if this were incompatible to https://reviews.llvm.org/D33908 (r304757).
Differential Revision: https://reviews.llvm.org/D33854
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@304851 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/lit.cfg')
-rw-r--r-- | test/lit.cfg | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/lit.cfg b/test/lit.cfg index e9916b2a60e8..5e903c26657e 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -546,3 +546,6 @@ llvm_config_cmd.wait() if config.have_libxar: config.available_features.add('xar') + +if config.enable_abi_breaking_checks == "1": + config.available_features.add('abi-breaking-checks') |