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 3277c7c commit ddb41eeCopy full SHA for ddb41ee
flang/lib/Optimizer/OpenMP/MapsForPrivatizedSymbols.cpp
@@ -113,6 +113,11 @@ class MapsForPrivatizedSymbolsPass
113
for (auto mapInfoOp : mapInfoOps)
114
addMapInfoOp(targetOp, mapInfoOp);
115
}
116
+ void addMapInfoOps(omp::TargetOp targetOp,
117
+ llvm::SmallVectorImpl<omp::MapInfoOp> &mapInfoOps) {
118
+ for (auto mapInfoOp : mapInfoOps)
119
+ addMapInfoOp(targetOp, mapInfoOp);
120
+ }
121
void runOnOperation() override {
122
ModuleOp module = getOperation()->getParentOfType<ModuleOp>();
123
fir::KindMapping kindMap = fir::getKindMapping(module);
0 commit comments