aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Woodward <ted.woodward@codeaurora.org>2020-02-10 14:42:48 -0600
committerTed Woodward <ted.woodward@codeaurora.org>2020-02-10 15:57:56 -0600
commit7683a084de6bd2637f2351f53389df8b610566cf (patch)
tree40ef132ab53de8c343bb9f4db33c532e4943cb8d /llvm/test/lit.cfg.py
parent[gn build] Port bb383ae6120 (diff)
downloadllvm-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.py4
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: