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 14b00a4 commit 61304eeCopy full SHA for 61304ee
mlir/lib/IR/SymbolTable.cpp
@@ -513,7 +513,7 @@ LogicalResult detail::verifySymbolTable(Operation *op) {
513
if (SymbolUserOpInterface user = dyn_cast<SymbolUserOpInterface>(op))
514
if (failed(user.verifySymbolUses(symbolTable)))
515
return WalkResult::interrupt();
516
- for (auto &attr : op->getRawDictionaryAttrs()) {
+ for (auto &attr : op->getAttrs()) {
517
if (auto user = dyn_cast<SymbolUserAttrInterface>(attr.getValue())) {
518
if (failed(user.verifySymbolUses(op, symbolTable)))
519
0 commit comments