[flang] [llvm] [flang][openmp] Adds Parser and Semantic Support for Interop Construct, and Init and Use Clauses. (PR #120584)

via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 14 03:55:59 PDT 2025


================
@@ -5578,6 +5578,98 @@ void OmpStructureChecker::Leave(const parser::DoConstruct &x) {
   Base::Leave(x);
 }
 
+void OmpStructureChecker::Enter(const parser::OpenMPInteropConstruct &x) {
+  bool isDependClauseOccured{false};
+  int targetCount{0}, targetSyncCount{0};
+  const auto &dir{std::get<parser::Verbatim>(x.t)};
+  std::list<std::string> ObjectNameList;
----------------
swatheesh-mcw wrote:

Addressed the review comment in [#2370fb7](https://github.com/llvm/llvm-project/pull/120584/commits/2370fb7703a40f53b748168ae3e984cf4d39460e).

https://github.com/llvm/llvm-project/pull/120584


More information about the llvm-commits mailing list