We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 882f21e commit aabb012Copy full SHA for aabb012
mlir/include/mlir/Dialect/Bufferization/IR/BufferizableOpInterface.h
@@ -152,7 +152,7 @@ class OpFilter {
152
/// This function adds a DENY entry.
153
void denyDialect(StringRef dialectNamespace) {
154
Entry::FilterFn filterFn = [=](Operation *op) {
155
- return op->getDialect()->getNamespace() == dialectNamespace;
+ return op->getName().getDialectNamespace() == dialectNamespace;
156
};
157
entries.push_back(Entry{filterFn, Entry::FilterType::DENY});
158
}
0 commit comments