diff options
Diffstat (limited to 'tools/llvm-ld/Linker.cpp')
-rw-r--r-- | tools/llvm-ld/Linker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-ld/Linker.cpp b/tools/llvm-ld/Linker.cpp index 9d1999517f..af2c0546f3 100644 --- a/tools/llvm-ld/Linker.cpp +++ b/tools/llvm-ld/Linker.cpp @@ -45,7 +45,7 @@ std::string llvm::FindLib(const std::string &Filename, bool SharedObjectOnly) { // Determine if the pathname can be found as it stands. sys::Path FilePath; - if (FilePath.set_file(Filename) && FilePath.readable()) + if (FilePath.setFile(Filename) && FilePath.readable()) return Filename; // Ask the System Path object to locate the library. This ensures that |