diff options
author | Adrian Prantl <aprantl@apple.com> | 2019-02-13 18:10:41 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2019-02-13 18:10:41 +0000 |
commit | 0f30a3b68fa8d687d041c8cd69ed8018d1ed0c84 (patch) | |
tree | 8f05ed72a0a93e11e3c6ccfbd601587680fe3273 /lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp | |
parent | 7a290dfe301bd4f1a9d320223b27e46658f653c4 (diff) | |
download | bcm5719-llvm-0f30a3b68fa8d687d041c8cd69ed8018d1ed0c84.tar.gz bcm5719-llvm-0f30a3b68fa8d687d041c8cd69ed8018d1ed0c84.zip |
Deserialize Clang module search path from DWARF
This patch properly extracts the full submodule path as well as its
search paths from DWARF import decls and passes it on to the
ClangModulesDeclVendor.
rdar://problem/47970144
Differential Revision: https://reviews.llvm.org/D58090
llvm-svn: 353961
Diffstat (limited to 'lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp')
-rw-r--r-- | lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp b/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp index 8d71b1309b1..2c079c3a2ca 100644 --- a/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp +++ b/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp @@ -377,7 +377,7 @@ bool SymbolFilePDB::ParseSupportFiles( bool SymbolFilePDB::ParseImportedModules( const lldb_private::SymbolContext &sc, - std::vector<lldb_private::ConstString> &imported_modules) { + std::vector<SourceModule> &imported_modules) { // PDB does not yet support module debug info return false; } |