Skip to content

Commit 963abc7

Browse files
committed
[mlir] Refactoring: Remove unnecessary curly braces from for-loop
1 parent ae62574 commit 963abc7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

mlir/lib/Analysis/Liveness.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,8 @@ struct BlockInfoBuilder {
7474
useValues.insert(operand);
7575
for (Region &region : op->getRegions())
7676
for (Block &child : region.getBlocks())
77-
for (BlockArgument arg : child.getArguments()) {
77+
for (BlockArgument arg : child.getArguments())
7878
defValues.insert(arg);
79-
}
8079
});
8180
llvm::set_subtract(useValues, defValues);
8281
}

0 commit comments

Comments
 (0)