From 589aae8304b4417245c176cdf95f5f4e4b819660 Mon Sep 17 00:00:00 2001 From: David Tenty Date: Fri, 29 Aug 2025 21:00:11 -0400 Subject: [PATCH] [PowerPC][llvm][test] fix llvm-64-bits for powerpc64 --- llvm/test/lit.cfg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/test/lit.cfg.py b/llvm/test/lit.cfg.py index bc240425d6d0e..371e7f40e6185 100644 --- a/llvm/test/lit.cfg.py +++ b/llvm/test/lit.cfg.py @@ -385,7 +385,7 @@ def version_int(ver): config.available_features.add(arch.lower() + "-registered-target") # Features -known_arches = ["x86_64", "mips64", "ppc64", "aarch64"] +known_arches = ["x86_64", "mips64", "powerpc64", "aarch64"] if config.host_ldflags.find("-m32") < 0 and any( config.llvm_host_triple.startswith(x) for x in known_arches ):