[llvm] [SLP] NFC. ShuffleInstructionBuilder::add V1->getType() is always a (PR #99842)
Alexey Bataev via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 22 10:19:12 PDT 2024
================
@@ -12071,22 +12073,17 @@ class BoUpSLP::ShuffleInstructionBuilder final : public BaseShuffleAnalysis {
}
/// Adds another one input vector and the mask for the shuffling.
void add(Value *V1, ArrayRef<int> Mask, bool = false) {
+ assert(isa<FixedVectorType>(V1->getType()));
----------------
alexey-bataev wrote:
Assertion message
https://github.com/llvm/llvm-project/pull/99842
More information about the llvm-commits
mailing list