[llvm] [LV][Test Only] Fix build after #214047: drop `-tail-predication` option (PR #214838)
Andrei Elovikov via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 7 12:51:13 PDT 2026
https://github.com/eas created https://github.com/llvm/llvm-project/pull/214838
It's target-specific and unnecessary here.
>From f365132343c6ddd447f7ec2e545cf8aefad00a46 Mon Sep 17 00:00:00 2001
From: Andrei Elovikov <andrei.elovikov at sifive.com>
Date: Fri, 7 Aug 2026 12:48:18 -0700
Subject: [PATCH] [LV][Test Only] Fix build after #214047: drop
`-tail-predication` option
It's target-specific and unnecessary here.
---
.../Transforms/LoopVectorize/vplan-based-stride-mv-btc.ll | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/llvm/test/Transforms/LoopVectorize/vplan-based-stride-mv-btc.ll b/llvm/test/Transforms/LoopVectorize/vplan-based-stride-mv-btc.ll
index ceafea07d890c..bb30e860dd059 100644
--- a/llvm/test/Transforms/LoopVectorize/vplan-based-stride-mv-btc.ll
+++ b/llvm/test/Transforms/LoopVectorize/vplan-based-stride-mv-btc.ll
@@ -12,11 +12,11 @@
; RUN: -enable-mem-access-versioning=true 2>&1 | FileCheck %s --check-prefix COMPARE-LAA-MV
; RUN: opt < %s -p loop-vectorize -force-vector-width=4 -S \
-; RUN: -tail-predication=enabled -tail-folding-policy=must-fold-tail \
+; RUN: -tail-folding-policy=must-fold-tail \
; RUN: -enable-mem-access-versioning=false 2>&1 | FileCheck %s --check-prefix COMPARE-NO-MV-FOLD-TAIL
; RUN: opt < %s -p loop-vectorize -force-vector-width=4 -S \
-; RUN: -tail-predication=enabled -tail-folding-policy=must-fold-tail \
+; RUN: -tail-folding-policy=must-fold-tail \
; RUN: -enable-mem-access-versioning=true 2>&1 | FileCheck %s --check-prefix COMPARE-LAA-MV-FOLD_TAIL
; RUN: opt < %s -p loop-vectorize -force-vector-width="vscale x 4" -S \
More information about the llvm-commits
mailing list