Skip to content

Commit cab2249

Browse files
committed
Remove braces
1 parent cab5085 commit cab2249

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

flang/lib/Lower/OpenMP.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1501,9 +1501,8 @@ bool ClauseProcessor::processDistSchedule(
15011501
mlir::Value &chunkSize) const {
15021502
if (auto *distScheduleClause = findUniqueClause<ClauseTy::DistSchedule>()) {
15031503
scheduleStatic = converter.getFirOpBuilder().getUnitAttr();
1504-
if (const auto *expr = Fortran::semantics::GetExpr(distScheduleClause->v)) {
1504+
if (const auto *expr = Fortran::semantics::GetExpr(distScheduleClause->v))
15051505
chunkSize = fir::getBase(converter.genExprValue(*expr, stmtCtx));
1506-
}
15071506
return true;
15081507
}
15091508
return false;

0 commit comments

Comments
 (0)