Added basic parsing/sema/serialization support for the 'novariants' clause.
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Thank you, Alexey for the review!!!
This changes have been addressed as you suggested.
| clang/lib/Sema/SemaOpenMP.cpp | ||
|---|---|---|
| 13567–13568 | What about other directives? | |
| clang/lib/Sema/SemaOpenMP.cpp | ||
|---|---|---|
| 13567–13568 | Hi Alexey, As of now "novariants" clause only allowed in disapatch directive. And dispatch directive can have implicit task directive. So for other directives will be unreachable. Am I missing something here? | |
| clang/lib/Sema/SemaOpenMP.cpp | ||
|---|---|---|
| 13567–13568 | No, I just was not aware of it. | |
clang-format: please reformat the code
-class OMPNovariantsClause final: public OMPClause, public OMPClauseWithPreInit { +class OMPNovariantsClause final : public OMPClause, + public OMPClauseWithPreInit {