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 79afb94 commit ae4f249Copy full SHA for ae4f249
mlir/lib/IR/Verifier.cpp
@@ -268,7 +268,7 @@ LogicalResult OperationVerifier::verifyOnExit(Operation &op) {
268
/// verifyBlockPostChildren.
269
LogicalResult OperationVerifier::verifyOperation(Operation &op) {
270
SmallVector<WorkItem> worklist{{&op}};
271
- DenseSet<WorkItem> seen;
+ SmallPtrSet<WorkItem, 8> seen;
272
while (!worklist.empty()) {
273
WorkItem top = worklist.back();
274
0 commit comments