diff options
author | Zachary Turner <zturner@google.com> | 2017-03-19 05:48:47 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2017-03-19 05:48:47 +0000 |
commit | d3d95fd66a57e48ab257bc8b804f622e763ceafb (patch) | |
tree | 660db500ae9a94d9a5b8d7a951675b783327a16d /lldb/source/Host/common/HostInfoBase.cpp | |
parent | c8c9f972580f06a466e42a77c01d820cba0d0106 (diff) | |
download | bcm5719-llvm-d3d95fd66a57e48ab257bc8b804f622e763ceafb.tar.gz bcm5719-llvm-d3d95fd66a57e48ab257bc8b804f622e763ceafb.zip |
Remove FileSystem::MakeDirectory.
Have callers use llvm::sys::fs::create_directory() instead.
Differential Revision: https://reviews.llvm.org/D31086
llvm-svn: 298203
Diffstat (limited to 'lldb/source/Host/common/HostInfoBase.cpp')
-rw-r--r-- | lldb/source/Host/common/HostInfoBase.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lldb/source/Host/common/HostInfoBase.cpp b/lldb/source/Host/common/HostInfoBase.cpp index 58f7cb5e5ac..80dbc6f0c46 100644 --- a/lldb/source/Host/common/HostInfoBase.cpp +++ b/lldb/source/Host/common/HostInfoBase.cpp @@ -314,9 +314,7 @@ bool HostInfoBase::ComputeProcessTempFileDirectory(FileSpec &file_spec) { std::string pid_str{llvm::to_string(Host::GetCurrentProcessID())}; temp_file_spec.AppendPathComponent(pid_str); - if (!FileSystem::MakeDirectory(temp_file_spec, - eFilePermissionsDirectoryDefault) - .Success()) + if (llvm::sys::fs::create_directory(temp_file_spec.GetPath())) return false; file_spec.GetDirectory().SetCString(temp_file_spec.GetCString()); @@ -338,9 +336,7 @@ bool HostInfoBase::ComputeGlobalTempFileDirectory(FileSpec &file_spec) { return false; temp_file_spec.AppendPathComponent("lldb"); - if (!FileSystem::MakeDirectory(temp_file_spec, - eFilePermissionsDirectoryDefault) - .Success()) + if (llvm::sys::fs::create_directory(temp_file_spec.GetPath())) return false; file_spec.GetDirectory().SetCString(temp_file_spec.GetCString()); |