[flang-commits] [flang] [llvm] [flang][OpenMP] Update handling of DEPEND clause (PR #113620)

Krzysztof Parzyszek via flang-commits flang-commits at lists.llvm.org
Mon Oct 28 07:46:36 PDT 2024


================
@@ -3439,6 +3439,18 @@ struct OmpObject {
 
 WRAPPER_CLASS(OmpObjectList, std::list<OmpObject>);
 
+// Ref: [4.5:169-170], [5.0:254-256], [5.1:287-289], [5.2:321]
+//
+// task-dependence-type -> // "dependence-type" in 5.1 and before
+//    IN | OUT | INOUT |        // since 4.5
+//    SOURCE | SINK |           // since 4.5, until 5.1
+//    MUTEXINOUTSET | DEPOBJ |  // since 5.0
+//    INOUTSET                  // since 5.2
----------------
kparzysz wrote:

I think somebody was working on it, I didn't want to step on their toes.  If not, I can do it in a subsequent patch.

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


More information about the flang-commits mailing list