[flang] [llvm] [flang][openmp] Adds Parser and Semantic Support for Interop Construct, and Init and Use Clauses. (PR #120584)
Krzysztof Parzyszek via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 08:13:43 PDT 2025
================
@@ -2163,6 +2163,30 @@ class UnparseVisitor {
Walk(std::get<std::optional<std::list<Modifier>>>(x.t), ": ");
Walk(std::get<OmpObjectList>(x.t));
}
+ void Unparse(const OmpInteropPreference &x) { Walk(x.v, ","); }
+ void Unparse(const OmpInitClause &x) {
+ using Modifier = OmpInitClause::Modifier;
+ auto &modifiers{std::get<std::optional<std::list<Modifier>>>(x.t)};
+ bool is_type_start = true;
----------------
kparzysz wrote:
Use camelCase for variable names, here and everywhere else in this function.
https://github.com/llvm/llvm-project/pull/120584
More information about the llvm-commits
mailing list