[clang] [SystemZ] Enable clang-target-64-bits for s390x (PR #210361)
via cfe-commits
cfe-commits at lists.llvm.org
Fri Jul 17 08:47:02 PDT 2026
llvmorg-github-actions[bot] wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-clang
Author: Abhina Sree (abhina-sree)
<details>
<summary>Changes</summary>
Enable clang-target-64-bits for s390x so we can enable tests like https://github.com/llvm/llvm-project/pull/210341
---
Full diff: https://github.com/llvm/llvm-project/pull/210361.diff
1 Files Affected:
- (modified) clang/test/lit.cfg.py (+1-1)
``````````diff
diff --git a/clang/test/lit.cfg.py b/clang/test/lit.cfg.py
index 32b8098d71b23..f7ac5d6d6676e 100644
--- a/clang/test/lit.cfg.py
+++ b/clang/test/lit.cfg.py
@@ -393,7 +393,7 @@ def is_filesystem_case_insensitive():
config.available_features.add("can-remove-opened-file")
# Features
-known_arches = ["x86_64", "mips64", "ppc64", "aarch64"]
+known_arches = ["x86_64", "mips64", "ppc64", "aarch64", "s390x"]
if any(config.target_triple.startswith(x) for x in known_arches):
config.available_features.add("clang-target-64-bits")
``````````
</details>
https://github.com/llvm/llvm-project/pull/210361
More information about the cfe-commits
mailing list