aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Support/GraphWriter.h
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2005-09-30 19:33:41 +0000
committerJim Laskey <jlaskey@mac.com>2005-09-30 19:33:41 +0000
commitb78ea801cd762ede7586c6e8ae37f8009100289a (patch)
tree8c35d7f34f9c6fb372d937bdc6d9cc3ba641a099 /include/llvm/Support/GraphWriter.h
parent453d21e66c6140857c444e85c112d007acee985b (diff)
downloadexternal_llvm-b78ea801cd762ede7586c6e8ae37f8009100289a.zip
external_llvm-b78ea801cd762ede7586c6e8ae37f8009100289a.tar.gz
external_llvm-b78ea801cd762ede7586c6e8ae37f8009100289a.tar.bz2
Reverting change moving to selection dag graph.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23568 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/GraphWriter.h')
-rw-r--r--include/llvm/Support/GraphWriter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/GraphWriter.h b/include/llvm/Support/GraphWriter.h
index fbd5a25..e898733 100644
--- a/include/llvm/Support/GraphWriter.h
+++ b/include/llvm/Support/GraphWriter.h
@@ -134,7 +134,7 @@ public:
if (DOTTraits::renderGraphFromBottomUp())
O << DOT::EscapeString(DOTTraits::getNodeLabel(Node, G));
- O << "|\\N}\"];\n"; // Finish printing the "node" line
+ O << "}\"];\n"; // Finish printing the "node" line
// Output all of the edges now
EI = GTraits::child_begin(Node);