[llvm] [test] Move pr73894.ll to AArch64 directory and update the target triple (PR #84269)

via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 6 17:37:51 PST 2024


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-llvm-transforms

Author: Cameron McInally (mcinally)

<details>
<summary>Changes</summary>

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

---
Full diff: https://github.com/llvm/llvm-project/pull/84269.diff


1 Files Affected:

- (renamed) llvm/test/Transforms/LoopVectorize/AArch64/pr73894.ll (+1-1) 


``````````diff
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(

``````````

</details>


https://github.com/llvm/llvm-project/pull/84269


More information about the llvm-commits mailing list