[flang-commits] [flang] [mlir] [MLIR][OpenMP] Normalize handling of entry block arguments (PR #109808)
Tom Eccles via flang-commits
flang-commits at lists.llvm.org
Wed Sep 25 09:18:55 PDT 2024
================
@@ -587,6 +578,15 @@ static void printParallelRegion(OpAsmPrinter &p, Operation *op, Region ®ion,
privateTypes, isByRef, privateSyms);
}
+ if (reductionSyms) {
+ auto *argsBegin = region.front().getArguments().begin();
+ MutableArrayRef argsSubrange(argsBegin + privateVars.size(),
+ argsBegin + privateVars.size() +
+ reductionTypes.size());
----------------
tblah wrote:
Ahh good point. Yeah that is fine by me
https://github.com/llvm/llvm-project/pull/109808
More information about the flang-commits
mailing list