From c88dd450812bf9261afabebdd06fa6893d0a6de9 Mon Sep 17 00:00:00 2001 From: Ryan Cowan Date: Fri, 30 Jan 2026 12:10:07 +0000 Subject: [PATCH] [AArch64][GlobalISel] Exclude arm64 from failing tests (#178849) As pointed out by the buildbots & https://github.com/llvm/llvm-project/pull/174746#issuecomment-3821237987, some of the tests modified by https://github.com/llvm/llvm-project/pull/174746 are missing exclusions for arm64 target triples causing the builds to fail. I have added these exclusions here. --- llvm/test/DebugInfo/Generic/debug-label-mi.ll | 2 +- llvm/test/Feature/optnone-llc.ll | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/test/DebugInfo/Generic/debug-label-mi.ll b/llvm/test/DebugInfo/Generic/debug-label-mi.ll index 341ca0208e4b..85260d672815 100644 --- a/llvm/test/DebugInfo/Generic/debug-label-mi.ll +++ b/llvm/test/DebugInfo/Generic/debug-label-mi.ll @@ -2,7 +2,7 @@ ; REQUIRES: asserts ; AArch64 uses GlobalISel for optnone functions meaning the output from 'isel' will be empty as it will not be run. -; UNSUPPORTED: target=aarch64{{.*}} +; UNSUPPORTED: target=aarch64{{.*}}, target=arm64{{.*}} ; RUN: llc -debug-only=isel %s -o /dev/null 2> %t.debug ; RUN: cat %t.debug | FileCheck %s --check-prefix=CHECKMI diff --git a/llvm/test/Feature/optnone-llc.ll b/llvm/test/Feature/optnone-llc.ll index 848f4454d22e..6e9ae4f14b32 100644 --- a/llvm/test/Feature/optnone-llc.ll +++ b/llvm/test/Feature/optnone-llc.ll @@ -7,7 +7,7 @@ ; REQUIRES: asserts, default_triple ; AArch64 uses GlobalISel for optnone functions meaning the output from 'isel' will be empty as it will not be run. -; UNSUPPORTED: target=nvptx{{.*}}, target=aarch64{{.*}} +; UNSUPPORTED: target=nvptx{{.*}}, target=aarch64{{.*}}, target=arm64{{.*}} ; This test verifies that we don't run Machine Function optimizations ; on optnone functions, and that we can turn off FastISel.