From 787b0db33c0aed66e74ec826809f8ff2fa174349 Mon Sep 17 00:00:00 2001 From: Andrew Lenharth Date: Thu, 23 Jul 2009 15:24:38 +0000 Subject: [PATCH] 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 --- include/llvm/Support/GraphWriter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Support/GraphWriter.h b/include/llvm/Support/GraphWriter.h index 3ebfca2b30d..26db5fd655f 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 << ""; + O << ""; if (EdgeSourceLabels) O << (*EdgeSourceLabels)[i]; } O << "}}"; -- 2.34.1