[compiler-rt] de06626 - PPC+TSan whack-a-mole, round 3.
Mitch Phillips via llvm-commits
llvm-commits at lists.llvm.org
Fri May 20 14:22:38 PDT 2022
Author: Mitch Phillips
Date: 2022-05-20T14:21:58-07:00
New Revision: de066267254acb97424bea008195d47de689aca4
URL: https://github.com/llvm/llvm-project/commit/de066267254acb97424bea008195d47de689aca4
DIFF: https://github.com/llvm/llvm-project/commit/de066267254acb97424bea008195d47de689aca4.diff
LOG: PPC+TSan whack-a-mole, round 3.
More details in https://reviews.llvm.org/D110552.
Last try until I revert the whole shenanigans.
Added:
Modified:
compiler-rt/test/lit.common.cfg.py
Removed:
################################################################################
diff --git a/compiler-rt/test/lit.common.cfg.py b/compiler-rt/test/lit.common.cfg.py
index 5922fca2fa92..62a73dd31396 100644
--- a/compiler-rt/test/lit.common.cfg.py
+++ b/compiler-rt/test/lit.common.cfg.py
@@ -207,7 +207,7 @@ def get_path_from_clang(args, allow_failure):
config.available_features.add(config.host_os.lower())
-if config.target_triple.startswith("ppc"):
+if config.target_triple.startswith("ppc") or config.target_triple.startswith("powerpc"):
config.available_features.add("ppc")
if re.match(r'^x86_64.*-linux', config.target_triple):
More information about the llvm-commits
mailing list