Skip to content

Commit 5bc34e7

Browse files
committed
Drop one-line braces for style
1 parent 35806ad commit 5bc34e7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

mlir/lib/Transforms/ViewOpGraph.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -385,9 +385,8 @@ class PrintOpPass : public impl::ViewOpGraphBase<PrintOpPass> {
385385
/// operation inside the cluster.
386386
void processBlock(Block &block) {
387387
emitClusterStmt([&]() {
388-
for (BlockArgument &blockArg : block.getArguments()) {
388+
for (BlockArgument &blockArg : block.getArguments())
389389
valueToNode[blockArg] = emitNodeStmt(getLabel(blockArg));
390-
}
391390
// Emit a node for each operation.
392391
std::optional<Node> prevNode;
393392
for (Operation &op : block) {

0 commit comments

Comments
 (0)