[PATCH] D82255: [flang][OpenMP] Enhance parser support for taskwait construct to OpenMP 5.0
Valentin Clement via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 15 06:18:39 PDT 2020
clementval accepted this revision.
clementval added a comment.
Minor comment but LGTM.
================
Comment at: llvm/include/llvm/Frontend/OpenMP/OMP.td:317
+ let allowedClauses = [
+ VersionedClause<OMPC_Depend>
+ ];
----------------
Is it allowed from 5.0 or before? If it is allowed from 5.0 you can specify it like `VersionedClause<OMPC_Depend, 50>` so it will be accepted (in clang so far) from 5.0 and later. This feature is not used in Flang for the moment.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D82255/new/
https://reviews.llvm.org/D82255
More information about the llvm-commits
mailing list