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 2be50ea commit 3bb167aCopy full SHA for 3bb167a
flang/lib/Lower/Bridge.cpp
@@ -94,11 +94,11 @@ struct IncrementLoopInfo {
94
template <typename T>
95
explicit IncrementLoopInfo(Fortran::semantics::Symbol &sym, const T &lower,
96
const T &upper, const std::optional<T> &step,
97
- bool isUnordered = false)
+ bool isConcurrent = false)
98
: loopVariableSym{&sym}, lowerExpr{Fortran::semantics::GetExpr(lower)},
99
upperExpr{Fortran::semantics::GetExpr(upper)},
100
- stepExpr{Fortran::semantics::GetExpr(step)}, isConcurrent{isUnordered} {
101
- }
+ stepExpr{Fortran::semantics::GetExpr(step)}, isConcurrent{
+ isConcurrent} {}
102
103
IncrementLoopInfo(IncrementLoopInfo &&) = default;
104
IncrementLoopInfo &operator=(IncrementLoopInfo &&x) = default;
0 commit comments