diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2009-07-23 15:24:38 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2009-07-23 15:24:38 +0000 |
commit | 787b0db33c0aed66e74ec826809f8ff2fa174349 (patch) | |
tree | 4d61d63c7835d5010d6078e24c87b7b45a0f690a /include/llvm/Support/GraphWriter.h | |
parent | b4c28e97f4cccd6ec8b816183bada8d0845a8966 (diff) |
emit simple node was using different labels for fields than the rest of the graph writter
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76879 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 3ebfca2b30..26db5fd655 100644 --- a/include/llvm/Support/GraphWriter.h +++ b/include/llvm/Support/GraphWriter.h @@ -233,7 +233,7 @@ public: for (unsigned i = 0; i != NumEdgeSources; ++i) { if (i) O << "|"; - O << "<g" << i << ">"; + O << "<s" << i << ">"; if (EdgeSourceLabels) O << (*EdgeSourceLabels)[i]; } O << "}}"; |