Add a missing call to GetFileRangeMap. It's absence was causing debug info from .o files to sometimes
not get processed. <rdar://problem/13406310> llvm-svn: 176914
This commit is contained in:
parent
1ca2f36289
commit
1b57d17e42
|
|
@ -765,6 +765,7 @@ SymbolFileDWARFDebugMap::ResolveSymbolContext (const Address& exe_so_addr, uint3
|
||||||
CompileUnitInfo* comp_unit_info = GetCompileUnitInfoForSymbolWithID (sc.symbol->GetID(), &oso_idx);
|
CompileUnitInfo* comp_unit_info = GetCompileUnitInfoForSymbolWithID (sc.symbol->GetID(), &oso_idx);
|
||||||
if (comp_unit_info)
|
if (comp_unit_info)
|
||||||
{
|
{
|
||||||
|
comp_unit_info->GetFileRangeMap(this);
|
||||||
Module *oso_module = GetModuleByCompUnitInfo (comp_unit_info);
|
Module *oso_module = GetModuleByCompUnitInfo (comp_unit_info);
|
||||||
if (oso_module)
|
if (oso_module)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue