From ff1516ae3025185ce681e89a88e8fbbe693339b6 Mon Sep 17 00:00:00 2001 From: Mehdi Amini Date: Fri, 21 Apr 2023 00:26:54 -0600 Subject: [PATCH] Adopt Properties to store operations inherent Attributes in the DLTI dialect This is part of an on-going migration to adopt Properties inside MLIR. Differential Revision: https://reviews.llvm.org/D148887 --- mlir/include/mlir/Dialect/DLTI/DLTIBase.td | 1 + 1 file changed, 1 insertion(+) diff --git a/mlir/include/mlir/Dialect/DLTI/DLTIBase.td b/mlir/include/mlir/Dialect/DLTI/DLTIBase.td index 37187bf..38b3b0c 100644 --- a/mlir/include/mlir/Dialect/DLTI/DLTIBase.td +++ b/mlir/include/mlir/Dialect/DLTI/DLTIBase.td @@ -45,6 +45,7 @@ def DLTI_Dialect : Dialect { }]; let useDefaultAttributePrinterParser = 1; + let usePropertiesForAttributes = 1; } def DLTI_DataLayoutEntryAttr : DialectAttr< -- 2.7.4