================ @@ -962,6 +962,9 @@ class OMPLoopTransformationDirective : public OMPLoopBasedDirective { /// Number of loops generated by this loop transformation. unsigned NumGeneratedLoops = 0; + /// Number of top level canonical loop nests generated by this loop + /// transformation + unsigned NumGeneratedLoopNests = 0; ---------------- eZWALT wrote:
This distinction is indeed important and actively used in `SemaOpenMP.cpp` file, particularly within the `AnalyzeLoopSequence` function (starting at line 14284). For example, it's referenced in lines 14344 and 14364 to differentiate between specific loop transformations. https://github.com/llvm/llvm-project/pull/139293 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits