Specify the graph name

llvm-svn: 4195
This commit is contained in:
Chris Lattner 2002-10-16 01:34:28 +00:00
parent c83c9a41fc
commit 9ed6bfa052

View File

@ -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 {