diff options
Diffstat (limited to 'lldb/tools/lldb-test/lldb-test.cpp')
-rw-r--r-- | lldb/tools/lldb-test/lldb-test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/tools/lldb-test/lldb-test.cpp b/lldb/tools/lldb-test/lldb-test.cpp index a5e06113c22..e41c066f9ab 100644 --- a/lldb/tools/lldb-test/lldb-test.cpp +++ b/lldb/tools/lldb-test/lldb-test.cpp @@ -562,7 +562,7 @@ int opts::symbols::dumpSymbols(Debugger &Dbg) { for (const auto &File : InputFilenames) { outs() << "Module: " << File << "\n"; ModuleSpec Spec{FileSpec(File, false)}; - Spec.GetSymbolFileSpec().SetFile(File, false); + Spec.GetSymbolFileSpec().SetFile(File, false, FileSpec::Style::native); auto ModulePtr = std::make_shared<lldb_private::Module>(Spec); SymbolVendor *Vendor = ModulePtr->GetSymbolVendor(); |