Skip to content

Commit 3bb167a

Browse files
committed
review comments
1 parent 2be50ea commit 3bb167a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

flang/lib/Lower/Bridge.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,11 @@ struct IncrementLoopInfo {
9494
template <typename T>
9595
explicit IncrementLoopInfo(Fortran::semantics::Symbol &sym, const T &lower,
9696
const T &upper, const std::optional<T> &step,
97-
bool isUnordered = false)
97+
bool isConcurrent = false)
9898
: loopVariableSym{&sym}, lowerExpr{Fortran::semantics::GetExpr(lower)},
9999
upperExpr{Fortran::semantics::GetExpr(upper)},
100-
stepExpr{Fortran::semantics::GetExpr(step)}, isConcurrent{isUnordered} {
101-
}
100+
stepExpr{Fortran::semantics::GetExpr(step)}, isConcurrent{
101+
isConcurrent} {}
102102

103103
IncrementLoopInfo(IncrementLoopInfo &&) = default;
104104
IncrementLoopInfo &operator=(IncrementLoopInfo &&x) = default;

0 commit comments

Comments
 (0)