From 641e1c252d40df3cd354ec7ed543018f31e55d96 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 16 Oct 2002 01:34:28 +0000 Subject: [PATCH] Specify the graph name git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4195 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/DataStructure/Printer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Analysis/DataStructure/Printer.cpp b/lib/Analysis/DataStructure/Printer.cpp index 0c0724ebdd1..87ba9712119 100644 --- a/lib/Analysis/DataStructure/Printer.cpp +++ b/lib/Analysis/DataStructure/Printer.cpp @@ -204,7 +204,7 @@ void DSGraph::writeGraphToFile(std::ostream &O, const string &GraphName) { std::ofstream F(Filename.c_str()); if (F.good()) { - WriteGraph(F, this); + WriteGraph(F, this, "DataStructures"); //print(F); O << " [" << getGraphSize() << "+" << getFunctionCalls().size() << "]\n"; } else { -- 2.34.1