From a3726a13f73040063786ced52ea6ba9c6c54f859 Mon Sep 17 00:00:00 2001 From: Geoffrey Martin-Noble Date: Wed, 16 Oct 2019 11:57:50 -0700 Subject: [PATCH] NFC: Update VectorOrTensor -> Shaped This was missed when the type was renamed. PiperOrigin-RevId: 275082588 --- mlir/lib/IR/TypeDetail.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlir/lib/IR/TypeDetail.h b/mlir/lib/IR/TypeDetail.h index 0e7edf03bd19..1cf0f5a71902 100644 --- a/mlir/lib/IR/TypeDetail.h +++ b/mlir/lib/IR/TypeDetail.h @@ -117,7 +117,7 @@ struct FunctionTypeStorage : public TypeStorage { Type const *inputsAndResults; }; -/// VectorOrTensor Type Storage. +/// Shaped Type Storage. struct ShapedTypeStorage : public TypeStorage { ShapedTypeStorage(Type elementType, unsigned subclassData = 0) : TypeStorage(subclassData), elementType(elementType) {}