File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2176,16 +2176,16 @@ static void createBodyOfOp(
2176
2176
2177
2177
// Handle privatization. Do not privatize if this is the outer operation.
2178
2178
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>;
2181
2181
if (!dsp) {
2182
2182
DataSharingProcessor proc (converter, *clauses, eval);
2183
2183
proc.processStep1 ();
2184
- proc.processStep2 (op, is_loop );
2184
+ proc.processStep2 (op, isLoop );
2185
2185
} else {
2186
- if (is_loop && args.size () > 0 )
2186
+ if (isLoop && args.size () > 0 )
2187
2187
dsp->setLoopIV (converter.getSymbolAddress (*args[0 ]));
2188
- dsp->processStep2 (op, is_loop );
2188
+ dsp->processStep2 (op, isLoop );
2189
2189
}
2190
2190
2191
2191
if (storeOp)
You can’t perform that action at this time.
0 commit comments