[PATCH] D46619: Remove 'abi-breaking-checks' lit feature.

Nico Weber via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue May 8 18:44:49 PDT 2018


thakis created this revision.
thakis added reviewers: mgrang, chapuni, zturner.
Herald added a subscriber: delcypher.

Its only two uses were removed in r311730.

Effectively reverts r304851 (but that code has removed around a bit since then).


https://reviews.llvm.org/D46619

Files:
  test/lit.site.cfg.py.in
  utils/lit/lit/llvm/config.py


Index: utils/lit/lit/llvm/config.py
===================================================================
--- utils/lit/lit/llvm/config.py
+++ utils/lit/lit/llvm/config.py
@@ -101,10 +101,6 @@
                 self.with_environment(
                     'DYLD_INSERT_LIBRARIES', gmalloc_path_str)
 
-        breaking_checks = getattr(config, 'enable_abi_breaking_checks', None)
-        if lit.util.pythonize_bool(breaking_checks):
-            features.add('abi-breaking-checks')
-
     def with_environment(self, variable, value, append_path=False):
         if append_path:
             # For paths, we should be able to take a list of them and process all
Index: test/lit.site.cfg.py.in
===================================================================
--- test/lit.site.cfg.py.in
+++ test/lit.site.cfg.py.in
@@ -24,7 +24,6 @@
 config.go_executable = "@GO_EXECUTABLE@"
 config.enable_shared = @ENABLE_SHARED@
 config.enable_assertions = @ENABLE_ASSERTIONS@
-config.enable_abi_breaking_checks = "@LLVM_ENABLE_ABI_BREAKING_CHECKS@"
 config.targets_to_build = "@TARGETS_TO_BUILD@"
 config.native_target = "@LLVM_NATIVE_ARCH@"
 config.llvm_bindings = "@LLVM_BINDINGS@".split(' ')


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D46619.145837.patch
Type: text/x-patch
Size: 1180 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180509/58ec1850/attachment.bin>


More information about the llvm-commits mailing list