summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--llvm/lib/Analysis/DataStructure/Printer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/DataStructure/Printer.cpp b/llvm/lib/Analysis/DataStructure/Printer.cpp
index 0c0724ebdd1..87ba9712119 100644
--- a/llvm/lib/Analysis/DataStructure/Printer.cpp
+++ b/llvm/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 {
OpenPOWER on IntegriCloud