diff options
Diffstat (limited to 'lldb/source/Host/common/Symbols.cpp')
-rw-r--r-- | lldb/source/Host/common/Symbols.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lldb/source/Host/common/Symbols.cpp b/lldb/source/Host/common/Symbols.cpp index 464c2fc5784..177d7042cd5 100644 --- a/lldb/source/Host/common/Symbols.cpp +++ b/lldb/source/Host/common/Symbols.cpp @@ -36,5 +36,13 @@ Symbols::FindSymbolFileInBundle (const FileSpec& symfile_bundle, return FileSpec(); } +bool +Symbols::DownloadObjectAndSymbolFile (ModuleSpec &module_spec) +{ + // Fill in the module_spec.GetFileSpec() for the object file and/or the + // module_spec.GetSymbolFileSpec() for the debug symbols file. + return false; +} + #endif |