[flang-commits] [flang] [llvm] [mlir] [flang][OpenMP] Enable tiling (PR #143715)

Michael Kruse via flang-commits flang-commits at lists.llvm.org
Tue Aug 19 05:09:17 PDT 2025


================
@@ -9144,6 +9144,15 @@ Error OpenMPIRBuilder::emitOffloadingArrays(
   return Error::success();
 }
 
+void OpenMPIRBuilder::dumpOutlineInfos() {
+  errs() << "=== Outline Infos Begin ===\n";
+  for (auto En : enumerate(OutlineInfos)) {
+    errs() << "[" << En.index() << "]: ";
+    En.value().dump();
+  }
+  errs() << "=== Outline Infos End ===\n";
+}
+
----------------
Meinersbur wrote:

Could you extract the `dump()` methods into a separate PR?

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


More information about the flang-commits mailing list