[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.
This commit is contained in:
Ryan Cowan 2026-01-30 12:10:07 +00:00 committed by GitHub
parent fbffdaa174
commit c88dd45081
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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.