projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
51138b3
)
writeGraph doesn't need its ShortNames argument.
author
Dan Gohman
<gohman@apple.com>
Mon, 27 Sep 2010 16:59:51 +0000
(16:59 +0000)
committer
Dan Gohman
<gohman@apple.com>
Mon, 27 Sep 2010 16:59:51 +0000
(16:59 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114842
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/Support/GraphWriter.h
patch
|
blob
|
history
diff --git
a/include/llvm/Support/GraphWriter.h
b/include/llvm/Support/GraphWriter.h
index 3ff3fa8ffe1cba5f7f856f547d7c7132b242b2e1..2d29e525fb43d19938eb9ff6b39355c04e0c2ee2 100644
(file)
--- a/
include/llvm/Support/GraphWriter.h
+++ b/
include/llvm/Support/GraphWriter.h
@@
-92,8
+92,7
@@
public:
DTraits = DOTTraits(SN);
}
- void writeGraph(bool ShortNames = false,
- const std::string &Title = "") {
+ void writeGraph(const std::string &Title = "") {
// Output the header for the graph...
writeHeader(Title);
@@
-302,7
+301,7
@@
raw_ostream &WriteGraph(raw_ostream &O, const GraphType &G,
GraphWriter<GraphType> W(O, G, ShortNames);
// Emit the graph.
- W.writeGraph(
ShortNames,
Title);
+ W.writeGraph(Title);
return O;
}