[llvm-branch-commits] [clang] [flang] [llvm] [Clang][OpenMP] Add permutation clause (PR #92030)

Michael Kruse via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Wed May 22 04:48:08 PDT 2024


================
@@ -5779,6 +5779,80 @@ class OMPReverseDirective final : public OMPLoopTransformationDirective {
   }
 };
 
+/// Represents the '#pragma omp interchange' loop transformation directive.
+///
+/// \code{c}
+///   #pragma omp interchange
+///   for (int i = 0; i < m; ++i)
+///     for (int j = 0; j < n; ++j)
+///       ..
+/// \endcode
+class OMPInterchangeDirective final : public OMPLoopTransformationDirective {
----------------
Meinersbur wrote:

Interchange construct extracted out into #93022

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


More information about the llvm-branch-commits mailing list