aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorDavide Italiano <davide@freebsd.org>2019-10-02 19:20:15 +0000
committerDavide Italiano <davide@freebsd.org>2019-10-02 19:20:15 +0000
commit33f855d40393a22fe839eedb2ac211d104f68cc5 (patch)
treece683f8bc8e626ccedc7383be3e23708cf926767 /source
parent0861113889048bf3b8815ce8a369e845197aea2b (diff)
downloadlldb-33f855d40393a22fe839eedb2ac211d104f68cc5.tar.gz
[ObjectFileMachO] Catch up with FileDesc changes.
This didn't show up because nobody built __arm64__ in a while. <rdar://problem/55916729> git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@373507 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'source')
-rw-r--r--source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp b/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
index 2fad73c70..6657ae882 100644
--- a/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
+++ b/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
@@ -2554,8 +2554,8 @@ size_t ObjectFileMachO::ParseSymtab() {
"dyld_shared_cache_", /* DYLD_SHARED_CACHE_BASE_NAME */
header_arch.GetArchitectureName(), ".development");
- FileSpec dsc_nondevelopment_filespec(dsc_path, false);
- FileSpec dsc_development_filespec(dsc_path_development, false);
+ FileSpec dsc_nondevelopment_filespec(dsc_path);
+ FileSpec dsc_development_filespec(dsc_path_development);
FileSpec dsc_filespec;
UUID dsc_uuid;
@@ -3001,7 +3001,7 @@ size_t ObjectFileMachO::ParseSymtab() {
// second is the directory for the source
// file so you end up with a path that looks
// like "/tmp/src//tmp/src/"
- FileSpec so_dir(so_path, false);
+ FileSpec so_dir(so_path);
if (!FileSystem::Instance().Exists(so_dir)) {
so_dir.SetFile(
&full_so_path[double_slash_pos + 1],