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

llvmlistbot at llvm.org llvmlistbot at llvm.org
Fri Apr 17 10:00:14 PDT 2026


Author: Aiden Grossman
Date: 2026-04-17T10:00:09-07:00
New Revision: 001b1b60121e30a6b9066e54d9a35a7a341a0918

URL: https://github.com/llvm/llvm-project/commit/001b1b60121e30a6b9066e54d9a35a7a341a0918
DIFF: https://github.com/llvm/llvm-project/commit/001b1b60121e30a6b9066e54d9a35a7a341a0918.diff

LOG: [MLIR] Fix forward fdff641f760d529c9484ecdd48b00d07d203f9a7 (#192701)

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

Added: 
    

Modified: 
    mlir/lib/Dialect/Vector/IR/VectorOps.cpp

Removed: 
    


################################################################################
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