From fff78a51ee1413676c1aa772532c925dcf313527 Mon Sep 17 00:00:00 2001 From: Ramkumar Ramachandra Date: Fri, 9 Aug 2024 14:17:13 +0100 Subject: [PATCH] LSV/test/AArch64: add missing lit.local.cfg; fix build (#102607) 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 00000000000000..10d4a0e953ed47 --- /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