[llvm] [test] Move pr73894.ll to AArch64 directory and update the target triple (PR #84269)
Cameron McInally via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 6 17:37:21 PST 2024
https://github.com/mcinally created https://github.com/llvm/llvm-project/pull/84269
pr73894.ll is failing on a number of non-AArch64 buildbots. I'm not certain that this is a proper fix, but I think it's best to move the test to the test/Transforms/LoopVectorize/AArch64/ directory and replace the triple with one commonly used in that directory.
llvm#73894
>From 8bc0e7facaa616b44a88fdc0a3d5243ddf474d17 Mon Sep 17 00:00:00 2001
From: Cameron McInally <cmcinally at nvidia.com>
Date: Wed, 6 Mar 2024 17:21:01 -0800
Subject: [PATCH] [test] Move pr73894.ll to AArch64 directory and update the
target triple
pr73894.ll is failing on a number of non-AArch64 buildbots. I'm
not certain that this is a proper fix, but I think it's best to
move the test to the test/Transforms/LoopVectorize/AArch64/
directory and replace the triple with one commonly used in that
directory.
llvm#73894
---
llvm/test/Transforms/LoopVectorize/{ => AArch64}/pr73894.ll | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename llvm/test/Transforms/LoopVectorize/{ => AArch64}/pr73894.ll (99%)
diff --git a/llvm/test/Transforms/LoopVectorize/pr73894.ll b/llvm/test/Transforms/LoopVectorize/AArch64/pr73894.ll
similarity index 99%
rename from llvm/test/Transforms/LoopVectorize/pr73894.ll
rename to llvm/test/Transforms/LoopVectorize/AArch64/pr73894.ll
index 4203a8eb8df6ea..1970ac966535db 100644
--- a/llvm/test/Transforms/LoopVectorize/pr73894.ll
+++ b/llvm/test/Transforms/LoopVectorize/AArch64/pr73894.ll
@@ -1,7 +1,7 @@
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 4
; RUN: opt -passes=loop-vectorize -mcpu=neoverse-v1 -force-vector-interleave=2 -force-vector-width=1 -S %s | FileCheck %s
-target triple = "arm64-linux"
+target triple = "aarch64-unknown-linux-gnu"
define i32 @pr70988() {
; CHECK-LABEL: define i32 @pr70988(
More information about the llvm-commits
mailing list