diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-03-29 16:48:16 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-03-29 16:48:16 +0000 |
commit | 5ba2b702c21052346f171ab277824dc0e549ff77 (patch) | |
tree | 2aa9a6364c19ebdcc8512621ebed6fdcc9e6e637 /lib/Bytecode/Archive/Archive.cpp | |
parent | 69cce815e7414ad9a186920c78890c852986d6bf (diff) |
For PR789:
Updates for change in interface of getFileStatus method of sys::Path class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35458 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Archive/Archive.cpp')
-rw-r--r-- | lib/Bytecode/Archive/Archive.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bytecode/Archive/Archive.cpp b/lib/Bytecode/Archive/Archive.cpp index 1c0b205e9e..aff7ab8f1e 100644 --- a/lib/Bytecode/Archive/Archive.cpp +++ b/lib/Bytecode/Archive/Archive.cpp @@ -116,7 +116,7 @@ bool ArchiveMember::replaceWith(const sys::Path& newFile, std::string* ErrMsg) { path.getMagicNumber(magic,4); signature = magic.c_str(); std::string err; - if (path.getFileStatus(info, ErrMsg)) + if (path.getFileStatus(info, false, ErrMsg)) return true; } |