Specify the graph name
authorChris Lattner <sabre@nondot.org>
Wed, 16 Oct 2002 01:34:28 +0000 (01:34 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 16 Oct 2002 01:34:28 +0000 (01:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4195 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/DataStructure/Printer.cpp

index 0c0724ebdd15e3032779bd317325a082c1782570..87ba971211931a551fed8a6a622798eb82425108 100644 (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 {