aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm
diff options
context:
space:
mode:
authorAndrew Lenharth <alenhar2@cs.uiuc.edu>2009-07-23 15:24:38 +0000
committerAndrew Lenharth <alenhar2@cs.uiuc.edu>2009-07-23 15:24:38 +0000
commit00cc87ae631c0b3908e607b215c1f5bda3b339ce (patch)
tree4d61d63c7835d5010d6078e24c87b7b45a0f690a /include/llvm
parent0a528a04cd09c0f0018d8e7251a3561966c25fbc (diff)
downloadexternal_llvm-00cc87ae631c0b3908e607b215c1f5bda3b339ce.zip
external_llvm-00cc87ae631c0b3908e607b215c1f5bda3b339ce.tar.gz
external_llvm-00cc87ae631c0b3908e607b215c1f5bda3b339ce.tar.bz2
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')
-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 3ebfca2..26db5fd 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 << "}}";