[flang-commits] [flang] [llvm] [mlir] [Flang]Fix for changed code at the end of AllocaIP. (PR #92430)
Mats Petersson via flang-commits
flang-commits at lists.llvm.org
Thu May 30 04:11:24 PDT 2024
================
@@ -1203,6 +1204,9 @@ convertOmpParallel(omp::ParallelOp opInst, llvm::IRBuilderBase &builder,
byRefVars.push_back(builder.CreateAlloca(
moduleTranslation.convertType(reductionDecls[i].getType())));
}
+
+ initBlock = splitBB(builder, true, "omp.reduction.init");
+ allocaIP = InsertPointTy(allocaIP.getBlock(), allocaIP.getBlock()->end());
----------------
Leporacanthicus wrote:
Yeah, that's probably just never used... :)
https://github.com/llvm/llvm-project/pull/92430
More information about the flang-commits
mailing list