Skip to content

Commit 882d400

Browse files
[Flang][OpenMP] NFC: Formatting change
1 parent f609d4b commit 882d400

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

flang/lib/Lower/OpenMP.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2176,16 +2176,16 @@ static void createBodyOfOp(
21762176

21772177
// Handle privatization. Do not privatize if this is the outer operation.
21782178
if (clauses && !outerCombined) {
2179-
constexpr bool is_loop = std::is_same_v<Op, mlir::omp::WsLoopOp> ||
2180-
std::is_same_v<Op, mlir::omp::SimdLoopOp>;
2179+
constexpr bool isLoop = std::is_same_v<Op, mlir::omp::WsLoopOp> ||
2180+
std::is_same_v<Op, mlir::omp::SimdLoopOp>;
21812181
if (!dsp) {
21822182
DataSharingProcessor proc(converter, *clauses, eval);
21832183
proc.processStep1();
2184-
proc.processStep2(op, is_loop);
2184+
proc.processStep2(op, isLoop);
21852185
} else {
2186-
if (is_loop && args.size() > 0)
2186+
if (isLoop && args.size() > 0)
21872187
dsp->setLoopIV(converter.getSymbolAddress(*args[0]));
2188-
dsp->processStep2(op, is_loop);
2188+
dsp->processStep2(op, isLoop);
21892189
}
21902190

21912191
if (storeOp)

0 commit comments

Comments
 (0)