[flang-commits] [flang] [llvm] [mlir] [mlir][OpenMP] - MLIR to LLVMIR translation support for delayed privatization of allocatables in `omp.target` ops (PR #116576)
Tom Eccles via flang-commits
flang-commits at lists.llvm.org
Wed Dec 4 02:22:56 PST 2024
================
@@ -6807,8 +6807,11 @@ static Expected<Function *> createOutlinedFunction(
OMPBuilder.ConstantAllocaRaiseCandidates.emplace_back(Func);
// Insert target deinit call in the device compilation pass.
- llvm::OpenMPIRBuilder::InsertPointOrErrorTy AfterIP =
- CBFunc(Builder.saveIP(), Builder.saveIP());
+ BasicBlock *OutlinedBodyBB =
+ splitBB(Builder, /*CreateBranch=*/true, "outlined.body");
+ llvm::OpenMPIRBuilder::InsertPointOrErrorTy AfterIP = CBFunc(
+ Builder.saveIP(),
+ OpenMPIRBuilder::InsertPointTy(OutlinedBodyBB, OutlinedBodyBB->begin()));
----------------
tblah wrote:
Does clang/can clang use OMPIRBuilder for `target`? This will change their generated code. Maybe somebody who contributes to clang should review.
https://github.com/llvm/llvm-project/pull/116576
More information about the flang-commits
mailing list