[PATCH] D123235: [OpenMP] atomic compare fail : Parser & AST support
Alexey Bataev via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Sat Oct 28 07:53:28 PDT 2023
ABataev added inline comments.
================
Comment at: clang/include/clang/AST/OpenMPClause.h:2525
+
+ OMPClause *FailMemoryOrderClause = nullptr;
+ SourceLocation ArgumentLoc;
----------------
I don't like the idea of a reference to another clause here, it may lead to many issues with serialization/deserialization, use-after-free etc. Better to keep a flag (kind of memory order clause?) that there is associated clause here and then just find it in the list of clauses, where required.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D123235/new/
https://reviews.llvm.org/D123235
More information about the cfe-commits
mailing list