[flang-commits] [flang] Adding parsing and semantic check support for omp masked (PR #91432)
Sergio Afonso via flang-commits
flang-commits at lists.llvm.org
Wed May 8 05:00:33 PDT 2024
================
@@ -220,12 +220,11 @@ TYPE_PARSER(construct<OmpAlignedClause>(
// 2.9.5 ORDER ([order-modifier :]concurrent)
TYPE_PARSER(construct<OmpOrderModifier>(
- "REPRODUCIBLE" >> pure(OmpOrderModifier::Kind::Reproducible)) ||
+ "REPRODUCIBLE" >> pure(OmpOrderModifier::Kind::Reproducible)) ||
construct<OmpOrderModifier>(
- "UNCONSTRAINED" >> pure(OmpOrderModifier::Kind::Unconstrained)))
+ "UNCONSTRAINED" >> pure(OmpOrderModifier::Kind::Unconstrained)))
-TYPE_PARSER(construct<OmpOrderClause>(
- maybe(Parser<OmpOrderModifier>{} / ":"),
+TYPE_PARSER(construct<OmpOrderClause>(maybe(Parser<OmpOrderModifier>{} / ":"),
----------------
skatrak wrote:
Nit: I'm seeing some unrelated formatting changes that make this a bit more difficult to review. Could you undo these and keep only the ones that are related to the purpose of this PR?
https://github.com/llvm/llvm-project/pull/91432
More information about the flang-commits
mailing list