diff options
author | Ted Woodward <ted.woodward@codeaurora.org> | 2020-02-10 14:42:48 -0600 |
---|---|---|
committer | Ted Woodward <ted.woodward@codeaurora.org> | 2020-02-10 15:57:56 -0600 |
commit | 7683a084de6bd2637f2351f53389df8b610566cf (patch) | |
tree | 40ef132ab53de8c343bb9f4db33c532e4943cb8d /llvm/test/lit.cfg.py | |
parent | [gn build] Port bb383ae6120 (diff) | |
download | llvm-project-7683a084de6bd2637f2351f53389df8b610566cf.tar.gz llvm-project-7683a084de6bd2637f2351f53389df8b610566cf.tar.bz2 llvm-project-7683a084de6bd2637f2351f53389df8b610566cf.zip |
Remove lit feature object-emission
Summary: The lit feature object-emission was added because Hexagon did not support the integrated assembler, so some tests needed to be turned off with a Hexagon target. Hexagon now supports the integrated assembler, so this feature can be removed.
Reviewers: bcain, kparzysz, jverma, whitequark, JDevlieghere
Reviewed By: JDevlieghere
Subscribers: mehdi_amini, hiraditya, steven_wu, dexonsmith, arphaman, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D73568
Diffstat (limited to 'llvm/test/lit.cfg.py')
-rw-r--r-- | llvm/test/lit.cfg.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/test/lit.cfg.py b/llvm/test/lit.cfg.py index e6e8d12a6e48..777322e0c2ad 100644 --- a/llvm/test/lit.cfg.py +++ b/llvm/test/lit.cfg.py @@ -246,10 +246,6 @@ if have_cxx_shared_library(): if config.libcxx_used: config.available_features.add('libcxx-used') -# Direct object generation -if not 'hexagon' in config.target_triple: - config.available_features.add('object-emission') - # LLVM can be configured with an empty default triple # Some tests are "generic" and require a valid default triple if config.target_triple: |