diff options
author | Mogball <jeff@modular.com> | 2024-05-23 11:07:46 -0700 |
---|---|---|
committer | Mogball <jeff@modular.com> | 2024-05-23 11:08:58 -0700 |
commit | dd2d132fb3521f37f44656edd65cca75430c251e (patch) | |
tree | 2d56aefe879cca2f4ace74be6cb771f695298234 | |
parent | 998fc2c2a6a3bc0758c7964a988fa0dea5a4c620 (diff) | |
download | llvm-dd2d132fb3521f37f44656edd65cca75430c251e.zip llvm-dd2d132fb3521f37f44656edd65cca75430c251e.tar.gz llvm-dd2d132fb3521f37f44656edd65cca75430c251e.tar.bz2 |
[mlir][ods] Fix broken test
-rw-r--r-- | mlir/test/mlir-tblgen/op-decl-and-defs.td | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mlir/test/mlir-tblgen/op-decl-and-defs.td b/mlir/test/mlir-tblgen/op-decl-and-defs.td index 5d91655..836ddca 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()) |