aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/DataStructure/Printer.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-10-16 01:34:28 +0000
committerChris Lattner <sabre@nondot.org>2002-10-16 01:34:28 +0000
commit641e1c252d40df3cd354ec7ed543018f31e55d96 (patch)
treea79e7aadc6ec35ad1821254c2bbcb6954ed020f3 /lib/Analysis/DataStructure/Printer.cpp
parent8c836ce4f86713376b626e30765494f0a4f7e4b3 (diff)
Specify the graph name
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4195 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/Printer.cpp')
-rw-r--r--lib/Analysis/DataStructure/Printer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/DataStructure/Printer.cpp b/lib/Analysis/DataStructure/Printer.cpp
index 0c0724ebdd..87ba971211 100644
--- a/lib/Analysis/DataStructure/Printer.cpp
+++ b/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 {