From 6cc844abeede5f2156e93068f8d3b27f4a9852f3 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 19 Jun 2021 20:20:52 +0200 Subject: [PATCH] Display inline symbol address. --- server/TracySourceView.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/TracySourceView.cpp b/server/TracySourceView.cpp index 638acfe7..52afa3d0 100644 --- a/server/TracySourceView.cpp +++ b/server/TracySourceView.cpp @@ -3125,6 +3125,8 @@ void SourceView::RenderAsmLine( AsmLine& line, const AddrStat& ipcnt, const Addr if( symData ) { TextFocused( "Function:", worker.GetString( symData->name ) ); + ImGui::SameLine(); + ImGui::TextDisabled( "(0x%" PRIx64 ")", symAddr ); } } }