================
@@ -39,10 +39,11 @@ CIRGenFunction::emitOMPParallelDirective(const
OMPParallelDirective &s) {
mlir::omp::ParallelOperands clauseOps;
OpenMPClauseEmitter ce(*this, getCIRGenModule(), builder, begin,
s.clauses());
ce.emitProcBind(clauseOps);
- ce.emitNYI</*supported=*/OMPProcBindClause>(
+ ce.emitIf(clauseOps, llvm::omp::Directive::OMPD_parallel);
----------------
skatrak wrote:
Nit: We evaluate clauses in alphabetical order for consistency in Flang, unless
there's some evaluation ordering requirement between them. I think it makes
sense to follow that convention here as well. This one would go before
`proc_bind`.
https://github.com/llvm/llvm-project/pull/204999
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits