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 0c0724e..87ba971 100644
--- a/lib/Analysis/DataStructure/Printer.cpp
+++ b/lib/Analysis/DataStructure/Printer.cpp
@@ -204,7 +204,7 @@
   std::ofstream F(Filename.c_str());
   
   if (F.good()) {
-    WriteGraph(F, this);
+    WriteGraph(F, this, "DataStructures");
     //print(F);
     O << " [" << getGraphSize() << "+" << getFunctionCalls().size() << "]\n";
   } else {