[Mlir-commits] [mlir] [MLIR] Fix forward fdff641f760d529c9484ecdd48b00d07d203f9a7 (PR #192701)

Aiden Grossman llvmlistbot at llvm.org
Fri Apr 17 10:00:08 PDT 2026


https://github.com/boomanaiden154 created https://github.com/llvm/llvm-project/pull/192701

ninja check-mlir somehow did not catch this...

>From ca9a7ecf97971b8ee96e01d7ae89f9b498cf9810 Mon Sep 17 00:00:00 2001
From: Aiden Grossman <aidengrossman at google.com>
Date: Fri, 17 Apr 2026 16:59:26 +0000
Subject: [PATCH] [MLIR] Fix forward fdff641f760d529c9484ecdd48b00d07d203f9a7

ninja check-mlir somehow did not catch this...
---
 mlir/lib/Dialect/Vector/IR/VectorOps.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mlir/lib/Dialect/Vector/IR/VectorOps.cpp b/mlir/lib/Dialect/Vector/IR/VectorOps.cpp
index 8d8658ddda33d..3d3e49134363f 100644
--- a/mlir/lib/Dialect/Vector/IR/VectorOps.cpp
+++ b/mlir/lib/Dialect/Vector/IR/VectorOps.cpp
@@ -3454,7 +3454,7 @@ static OpFoldResult foldShuffleConstantInputs(ShuffleOp op, Attribute v1Attr,
 OpFoldResult vector::ShuffleOp::fold(FoldAdaptor adaptor) {
   auto v1Type = getV1VectorType();
 
-  assert(!v1Type.isScalable() && !getV2VectorType.isScalable() &&
+  assert(!v1Type.isScalable() && !getV2VectorType().isScalable() &&
          "Vector shuffle does not support scalable vectors");
 
   // For consistency: 0-D shuffle return type is 1-D, this cannot be a folding



More information about the Mlir-commits mailing list