aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMogball <jeff@modular.com>2024-05-23 11:07:46 -0700
committerMogball <jeff@modular.com>2024-05-23 11:08:58 -0700
commitdd2d132fb3521f37f44656edd65cca75430c251e (patch)
tree2d56aefe879cca2f4ace74be6cb771f695298234
parent998fc2c2a6a3bc0758c7964a988fa0dea5a4c620 (diff)
downloadllvm-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.td4
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())