From: Chris Lattner Date: Wed, 16 Oct 2002 01:34:28 +0000 (+0000) Subject: Specify the graph name X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=641e1c252d40df3cd354ec7ed543018f31e55d96;p=oota-llvm.git Specify the graph name git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4195 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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 {