[flang-commits] [flang] [flang] Add parsing of DO CONCURRENT REDUCE	clause (PR #92518)
    via flang-commits 
    flang-commits at lists.llvm.org
       
    Fri May 17 12:42:49 PDT 2024
    
    
  
================
@@ -1038,6 +1038,10 @@ class UnparseVisitor {
   void Unparse(const LocalitySpec::LocalInit &x) {
     Word("LOCAL_INIT("), Walk(x.v, ", "), Put(')');
   }
+  void Unparse(const LocalitySpec::Reduce &x) {
+    Word("REDUCE("), Walk(std::get<parser::ReduceOperation>(x.t)), Put(':');
+    Walk(std::get<std::list<parser::Name>>(x.t), ", "), Put(')');
----------------
khaki3 wrote:
Nice!
https://github.com/llvm/llvm-project/pull/92518
    
    
More information about the flang-commits
mailing list