1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-03 14:31:10 +00:00

Specify the graph name

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4195 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-10-16 01:34:28 +00:00
parent 8c836ce4f8
commit 641e1c252d

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