summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/llvm/Support/FileSystem.h3
-rw-r--r--lib/Support/Path.cpp4
2 files changed, 3 insertions, 4 deletions
diff --git a/include/llvm/Support/FileSystem.h b/include/llvm/Support/FileSystem.h
index c29d142ab1..3244517644 100644
--- a/include/llvm/Support/FileSystem.h
+++ b/include/llvm/Support/FileSystem.h
@@ -573,8 +573,7 @@ error_code unique_file(const Twine &model, int &result_fd,
/// @brief Simpler version for clients that don't want an open file.
error_code unique_file(const Twine &Model, SmallVectorImpl<char> &ResultPath,
- bool MakeAbsolute = true,
- unsigned Mode = owner_read | owner_write);
+ bool MakeAbsolute = true);
error_code createUniqueDirectory(const Twine &Prefix,
SmallVectorImpl<char> &ResultPath);
diff --git a/lib/Support/Path.cpp b/lib/Support/Path.cpp
index a631c760fd..1f4f44acb0 100644
--- a/lib/Support/Path.cpp
+++ b/lib/Support/Path.cpp
@@ -626,12 +626,12 @@ bool is_relative(const Twine &path) {
namespace fs {
error_code unique_file(const Twine &Model, SmallVectorImpl<char> &ResultPath,
- bool MakeAbsolute, unsigned Mode) {
+ bool MakeAbsolute) {
// FIXME: This is really inefficient. unique_path creates a path an tries to
// open it. We should factor the code so that we just don't create/open the
// file when we don't need it.
int FD;
- error_code Ret = unique_file(Model, FD, ResultPath, MakeAbsolute, Mode);
+ error_code Ret = unique_file(Model, FD, ResultPath, MakeAbsolute, all_read);
if (Ret)
return Ret;