From e2169bec8837f00a8de640cfe5a74e8b8d0849f6 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Tue, 8 Jul 2008 23:33:46 +0000 Subject: [PATCH] The graph name really does matter for configurations that use gv. llvm-svn: 53259 --- include/llvm/Support/GraphWriter.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/include/llvm/Support/GraphWriter.h b/include/llvm/Support/GraphWriter.h index 833f4a8e089..14a70cb1892 100644 --- a/include/llvm/Support/GraphWriter.h +++ b/include/llvm/Support/GraphWriter.h @@ -82,15 +82,18 @@ public: GraphWriter(std::ostream &o, const GraphType &g) : O(o), G(g) {} void writeHeader(const std::string &Name) { - if (Name.empty()) - O << "digraph foo {\n"; // Graph name doesn't matter - else + std::string GraphName = DOTTraits::getGraphName(G); + + if (!Name.empty()) O << "digraph " << Name << " {\n"; + else if (!GraphName.empty()) + O << "digraph " << GraphName << " {\n"; + else + O << "digraph unnamed {\n"; if (DOTTraits::renderGraphFromBottomUp()) O << "\trankdir=\"BT\";\n"; - std::string GraphName = DOTTraits::getGraphName(G); if (!GraphName.empty()) O << "\tlabel=\"" << DOT::EscapeString(GraphName) << "\";\n"; O << DOTTraits::getGraphProperties(G);