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 35806ad commit 5bc34e7Copy full SHA for 5bc34e7
mlir/lib/Transforms/ViewOpGraph.cpp
@@ -385,9 +385,8 @@ class PrintOpPass : public impl::ViewOpGraphBase<PrintOpPass> {
385
/// operation inside the cluster.
386
void processBlock(Block &block) {
387
emitClusterStmt([&]() {
388
- for (BlockArgument &blockArg : block.getArguments()) {
+ for (BlockArgument &blockArg : block.getArguments())
389
valueToNode[blockArg] = emitNodeStmt(getLabel(blockArg));
390
- }
391
// Emit a node for each operation.
392
std::optional<Node> prevNode;
393
for (Operation &op : block) {
0 commit comments