[llvm-branch-commits] [mlir] e47e313 - [mlir] Fix a typo MemRefType -> UnrankedMemRefType

Alexander Belyaev via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Wed Dec 30 05:39:32 PST 2020


Author: Alexander Belyaev
Date: 2020-12-30T14:35:25+01:00
New Revision: e47e313d647e00ab5fbb4a17f9b69f33c49aafc3

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

LOG: [mlir] Fix a typo MemRefType -> UnrankedMemRefType

Added: 
    

Modified: 
    mlir/include/mlir/IR/OpBase.td

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/IR/OpBase.td b/mlir/include/mlir/IR/OpBase.td
index c65cc22c90f0..dfea9fed70a5 100644
--- a/mlir/include/mlir/IR/OpBase.td
+++ b/mlir/include/mlir/IR/OpBase.td
@@ -656,7 +656,7 @@ class 4DTensorOf<list<Type> allowedTypes> : TensorRankOf<allowedTypes, [4]>;
 def AnyUnrankedMemRef :
     ShapedContainerType<[AnyType],
                         IsUnrankedMemRefTypePred, "unranked.memref",
-                        "::mlir::MemRefType">;
+                        "::mlir::UnrankedMemRefType">;
 // Memref type.
 
 // Memrefs are blocks of data with fixed type and rank.


        


More information about the llvm-branch-commits mailing list