From c13e25674ab894227a27027d3fd7bcaf7fd996c1 Mon Sep 17 00:00:00 2001 From: Ramkumar Ramachandra Date: Fri, 9 Aug 2024 13:27:07 +0100 Subject: [PATCH] LSV/test/AArch64: add missing lit.local.cfg; fix build Follow up on 199d6f2 (LSV: document hang reported in #37865) to fix the build when omitting the AArch64 target. Add the missing lit.local.cfg. --- llvm/test/Transforms/LoadStoreVectorizer/AArch64/lit.local.cfg | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 llvm/test/Transforms/LoadStoreVectorizer/AArch64/lit.local.cfg diff --git a/llvm/test/Transforms/LoadStoreVectorizer/AArch64/lit.local.cfg b/llvm/test/Transforms/LoadStoreVectorizer/AArch64/lit.local.cfg new file mode 100644 index 0000000000000..10d4a0e953ed4 --- /dev/null +++ b/llvm/test/Transforms/LoadStoreVectorizer/AArch64/lit.local.cfg @@ -0,0 +1,2 @@ +if not "AArch64" in config.root.targets: + config.unsupported = True