diff options
author | Davide Italiano <davide@freebsd.org> | 2019-10-02 19:20:18 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2019-10-02 19:20:18 +0000 |
commit | ef46be6c2acdae00cef6981cf30f4b29b7f48917 (patch) | |
tree | cf4798902ec73295f56c1ad767bd054e40f04467 /lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp | |
parent | 6fdeb0324f2ca33ec2b650945acd0a86418469c1 (diff) | |
download | bcm5719-llvm-ef46be6c2acdae00cef6981cf30f4b29b7f48917.tar.gz bcm5719-llvm-ef46be6c2acdae00cef6981cf30f4b29b7f48917.zip |
[ObjectFileMachO] FileSpec::SetFile() now takes the style as arg.
Another block that's only compiled on __arm64__ and wasn't
updated.
<rdar://problem/55916729>
llvm-svn: 373508
Diffstat (limited to 'lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp')
-rw-r--r-- | lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp b/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp index 6657ae88254..bc46b97eecc 100644 --- a/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp +++ b/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp @@ -3005,7 +3005,7 @@ size_t ObjectFileMachO::ParseSymtab() { if (!FileSystem::Instance().Exists(so_dir)) { so_dir.SetFile( &full_so_path[double_slash_pos + 1], - false); + FileSpec::Style::native); if (FileSystem::Instance().Exists(so_dir)) { // Trim off the incorrect path full_so_path.erase(0, |