Display inline symbol address.

This commit is contained in:
Bartosz Taudul 2021-06-19 20:20:52 +02:00
parent cb63b35cb1
commit 6cc844abee
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -3125,6 +3125,8 @@ void SourceView::RenderAsmLine( AsmLine& line, const AddrStat& ipcnt, const Addr
if( symData ) if( symData )
{ {
TextFocused( "Function:", worker.GetString( symData->name ) ); TextFocused( "Function:", worker.GetString( symData->name ) );
ImGui::SameLine();
ImGui::TextDisabled( "(0x%" PRIx64 ")", symAddr );
} }
} }
} }