[Mlir-commits] [llvm] [mlir] [mlir][OpenMP] Translation support for taskloop construct (PR #174386)

Tom Eccles llvmlistbot at llvm.org
Tue Jan 6 05:07:30 PST 2026


================
@@ -2233,28 +2308,36 @@ void TaskContextStructManager::generateTaskContextStruct() {
                                    "omp.task.context_ptr");
 }
 
-void TaskContextStructManager::createGEPsToPrivateVars() {
-  if (!structPtr) {
-    assert(privateVarTypes.empty());
-    return;
-  }
+SmallVector<llvm::Value *> TaskContextStructManager::createGEPsToPrivateVars(
+    llvm::Value *altStructPtr) const {
+  assert(!privateVarTypes.empty());
----------------
tblah wrote:

Fixed in 803ade3

https://github.com/llvm/llvm-project/pull/174386


More information about the Mlir-commits mailing list