Add a missing call to GetFileRangeMap. It's absence was causing debug info from...
authorJim Ingham <jingham@apple.com>
Wed, 13 Mar 2013 00:07:18 +0000 (00:07 +0000)
committerJim Ingham <jingham@apple.com>
Wed, 13 Mar 2013 00:07:18 +0000 (00:07 +0000)
not get processed.

<rdar://problem/13406310>

llvm-svn: 176914

lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp

index 5efda2a..67b4c6e 100644 (file)
@@ -765,6 +765,7 @@ SymbolFileDWARFDebugMap::ResolveSymbolContext (const Address& exe_so_addr, uint3
                 CompileUnitInfo* comp_unit_info = GetCompileUnitInfoForSymbolWithID (sc.symbol->GetID(), &oso_idx);
                 if (comp_unit_info)
                 {
+                    comp_unit_info->GetFileRangeMap(this);
                     Module *oso_module = GetModuleByCompUnitInfo (comp_unit_info);
                     if (oso_module)
                     {