[Mlir-commits] [flang] [mlir] [OpenMP][mlir] Add DynGroupPrivateClause in omp dialect (PR #153562)
Sergio Afonso
llvmlistbot at llvm.org
Thu Apr 30 02:51:10 PDT 2026
================
@@ -7164,11 +7186,20 @@ convertOmpTarget(Operation &opInst, llvm::IRBuilderBase &builder,
if (Value targetIfCond = targetOp.getIfExpr())
ifCond = moduleTranslation.lookupValue(targetIfCond);
+ Value dynGroupPrivateSize = targetOp.getDynGroupprivateSize();
+ llvm::Value *dynSizeVal = nullptr;
+ if (dynGroupPrivateSize)
+ dynSizeVal = moduleTranslation.lookupValue(dynGroupPrivateSize);
----------------
skatrak wrote:
Looks good, thanks!
https://github.com/llvm/llvm-project/pull/153562
More information about the Mlir-commits
mailing list