aprantl added inline comments.
================
Comment at: source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp:2970
if (die) {
TypeSystem *type_system =
----------------
If you find the time:
```
if (!die)
return {};
auto *type_system = GetTypeSystemForLanguage(die.GetCU()->GetLanguageType());
if (!type_system)
return {};
DWARFASTParser *dwarf_ast = type_system->GetDWARFParser();
if (!dwarf_ast)
return {};
```
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D63322/new/
https://reviews.llvm.org/D63322
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits