mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
Disambiguate calls to WriteGraph() to disable ADL.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111618 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c0086edac4
commit
68e18b3054
@ -322,7 +322,7 @@ sys::Path WriteGraph(const GraphType &G, const std::string &Name,
|
||||
raw_fd_ostream O(Filename.c_str(), ErrorInfo);
|
||||
|
||||
if (ErrorInfo.empty()) {
|
||||
WriteGraph(O, G, ShortNames, Name, Title);
|
||||
llvm::WriteGraph(O, G, ShortNames, Name, Title);
|
||||
errs() << " done. \n";
|
||||
} else {
|
||||
errs() << "error opening file '" << Filename.str() << "' for writing!\n";
|
||||
@ -339,7 +339,7 @@ template<typename GraphType>
|
||||
void ViewGraph(const GraphType &G, const std::string &Name,
|
||||
bool ShortNames = false, const std::string &Title = "",
|
||||
GraphProgram::Name Program = GraphProgram::DOT) {
|
||||
sys::Path Filename = WriteGraph(G, Name, ShortNames, Title);
|
||||
sys::Path Filename = llvm::WriteGraph(G, Name, ShortNames, Title);
|
||||
|
||||
if (Filename.isEmpty())
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user