[Mlir-commits] [mlir] dd2d132 - [mlir][ods] Fix broken test

llvmlistbot at llvm.org llvmlistbot at llvm.org
Thu May 23 11:09:09 PDT 2024


Author: Mogball
Date: 2024-05-23T11:08:58-07:00
New Revision: dd2d132fb3521f37f44656edd65cca75430c251e

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

LOG: [mlir][ods] Fix broken test

Added: 
    

Modified: 
    mlir/test/mlir-tblgen/op-decl-and-defs.td

Removed: 
    


################################################################################
diff  --git a/mlir/test/mlir-tblgen/op-decl-and-defs.td b/mlir/test/mlir-tblgen/op-decl-and-defs.td
index 5d9165528397d..836ddca5eb845 100644
--- a/mlir/test/mlir-tblgen/op-decl-and-defs.td
+++ b/mlir/test/mlir-tblgen/op-decl-and-defs.td
@@ -338,10 +338,8 @@ def NS_NOp : NS_Op<"op_with_properties", []> {
   let arguments = (ins Property<"unsigned">:$value);
 }
 
-// Check that `getDiscardableAttrDictionary()` is used with properties.
-
 // DEFS: NOpGenericAdaptorBase::NOpGenericAdaptorBase(NOp op) :
-// DEFS-SAME: odsAttrs(op->getDiscardableAttrDictionary())
+// DEFS-SAME: odsAttrs(op->getRawDictionaryAttrs())
 // DEFS-SAME: odsOpName(op->getName())
 // DEFS-SAME: properties(op.getProperties())
 // DEFS-SAME: odsRegions(op->getRegions())


        


More information about the Mlir-commits mailing list