[PATCH] D115649: Revert unnecessary and incorrect change made to GraphWriter

Jamie Schmeiser via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Dec 14 05:43:06 PST 2021


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG6fef0ffa14a3: Revert unnecessary and incorrect change made to GraphWriter (authored by jamieschmeiser).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D115649/new/

https://reviews.llvm.org/D115649

Files:
  llvm/include/llvm/Support/GraphWriter.h


Index: llvm/include/llvm/Support/GraphWriter.h
===================================================================
--- llvm/include/llvm/Support/GraphWriter.h
+++ llvm/include/llvm/Support/GraphWriter.h
@@ -265,10 +265,9 @@
           << DOT::EscapeString(DTraits.getEdgeDestLabel(Node, i));
       }
 
-      if (RenderUsingHTML)
-        O << "<td colspan=\"1\">... truncated</td>";
-      else if (i != e)
-        O << "|<d64>truncated...}";
+      if (i != e)
+        O << "|<d64>truncated...";
+      O << "}";
     }
 
     if (RenderUsingHTML)


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D115649.394219.patch
Type: text/x-patch
Size: 553 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20211214/e5d44c35/attachment.bin>


More information about the llvm-commits mailing list