[PATCH] D110270: [flang][OpenMP] Check for occurrence of multiple list items in nontemporal clause for simd directive

Shraiysh via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 17 08:41:24 PST 2022


shraiysh added a comment.

Patch LGTM (once @kiranchandramohan's comments have been addressed ). Please run `git-clang-format HEAD~` to format.
Also, please rebase with main, it has been long.



================
Comment at: flang/lib/Semantics/check-omp-structure.cpp:177
+    for (auto const &var : nameList) {
+      if (listVars.count(*(var.symbol)) == 1) {
+        context_.Say(item,
----------------
`llvm::is_contained`?


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D110270/new/

https://reviews.llvm.org/D110270



More information about the llvm-commits mailing list