mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-10 14:36:12 +00:00
writeGraph doesn't need its ShortNames argument.
llvm-svn: 114842
This commit is contained in:
parent
4222dd7f87
commit
8443b40d5f
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user