Author: davide Date: Wed Oct 2 12:20:15 2019 New Revision: 373507 URL: http://llvm.org/viewvc/llvm-project?rev=373507&view=rev Log: [ObjectFileMachO] Catch up with FileDesc changes.
This didn't show up because nobody built __arm64__ in a while. <rdar://problem/55916729> Modified: lldb/trunk/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp Modified: lldb/trunk/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp?rev=373507&r1=373506&r2=373507&view=diff ============================================================================== --- lldb/trunk/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp (original) +++ lldb/trunk/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp Wed Oct 2 12:20:15 2019 @@ -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], _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits