forked from OSchip/llvm-project
Make the output from "target modules lookup -n"
prettier. llvm-svn: 150285
This commit is contained in:
parent
7e7da2d285
commit
f6172c2cbc
|
@ -1485,12 +1485,21 @@ DumpSymbolContextList (CommandInterpreter &interpreter, Stream &strm, SymbolCont
|
|||
strm.PutCString(" in ");
|
||||
}
|
||||
}
|
||||
|
||||
AddressRange range;
|
||||
|
||||
sc.GetAddressRange(eSymbolContextEverything,
|
||||
0,
|
||||
true,
|
||||
range);
|
||||
|
||||
sc.DumpStopContext(&strm,
|
||||
exe_scope,
|
||||
sc.line_entry.range.GetBaseAddress(),
|
||||
range.GetBaseAddress(),
|
||||
true,
|
||||
true,
|
||||
false);
|
||||
|
||||
strm.EOL();
|
||||
if (verbose)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue