[Mlir-commits] [flang] [llvm] [mlir] [flang][OpenMP] Enable tiling (PR #143715)
Jan Leyonberg
llvmlistbot at llvm.org
Wed Jun 25 08:31:45 PDT 2025
================
@@ -131,20 +134,59 @@ class CanonicalizationOfOmp {
// Ignore compiler directives.
if (GetConstructIf<parser::CompilerDirective>(*nextIt))
continue;
+ // Keep track of the loops to handle the end loop directives
+ llvm::SmallVector<parser::OpenMPLoopConstruct *> loops;
+ loops.push_back(&x);
+ if (auto *innerConstruct{
----------------
jsjodin wrote:
Okay thanks! I will fix that.
https://github.com/llvm/llvm-project/pull/143715
More information about the Mlir-commits
mailing list