[Mlir-commits] [mlir] [mlir][OpenMP] inscan reduction modifier and scan op mlir support (PR #114737)

Sergio Afonso llvmlistbot at llvm.org
Wed Jan 22 07:52:48 PST 2025


================
@@ -615,15 +632,14 @@ static ParseResult parseBlockArgClause(
   if (succeeded(parser.parseOptionalKeyword(keyword))) {
     if (!reductionArgs)
       return failure();
-
     if (failed(parseClauseWithRegionArgs(
             parser, reductionArgs->vars, reductionArgs->types, entryBlockArgs,
-            &reductionArgs->syms, &reductionArgs->byref)))
+            &reductionArgs->syms, &reductionArgs->byref,
+            &(reductionArgs->reductionMod))))
       return failure();
   }
   return success();
 }
-
----------------
skatrak wrote:

Remember to add back this line before merging.

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


More information about the Mlir-commits mailing list