diff options
author | Jim Laskey <jlaskey@mac.com> | 2005-09-30 19:11:53 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2005-09-30 19:11:53 +0000 |
commit | e6e34bc07c7c3b1c8cd1e231ec543e484301a055 (patch) | |
tree | f569e4ad1824c5def921e07b59e4ea5bbc8e615e /include/llvm/Support/GraphWriter.h | |
parent | 0f21fd5204a2627c613340269e2e39e2c8cca659 (diff) |
Add the node name (thus the address) to node label.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23565 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/GraphWriter.h')
-rw-r--r-- | include/llvm/Support/GraphWriter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/GraphWriter.h b/include/llvm/Support/GraphWriter.h index e898733a58..fbd5a25c74 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"; // Finish printing the "node" line + O << "|\\N}\"];\n"; // Finish printing the "node" line // Output all of the edges now EI = GTraits::child_begin(Node); |