[llvm] [SLP]Represent SLP graph as a tree (PR #126771)

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 19 03:52:37 PST 2025


================
@@ -3559,9 +3572,9 @@ class BoUpSLP {
       for (unsigned ReorderIdx : ReorderIndices)
         dbgs() << ReorderIdx << ", ";
       dbgs() << "\n";
-      dbgs() << "UserTreeIndices: ";
-      for (const auto &EInfo : UserTreeIndices)
-        dbgs() << EInfo << ", ";
+      dbgs() << "UserTreeIndex: ";
+      if (UserTreeIndex)
+        dbgs() << UserTreeIndex;
----------------
RKSimon wrote:

write `"<invalid>"` if !UserTreeIndex?

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


More information about the llvm-commits mailing list