mirror of
https://github.com/wolfpld/tracy.git
synced 2026-08-11 23:59:46 +00:00
Skip processing uarch data if AT&T mode is enabled.
This commit is contained in:
@@ -2523,7 +2523,7 @@ void SourceView::RenderAsmLine( AsmLine& line, uint32_t ipcnt, uint32_t iptotal,
|
||||
}
|
||||
|
||||
const AsmVar* asmVar = nullptr;
|
||||
if( ( m_cpuArch == CpuArchX64 || m_cpuArch == CpuArchX86 ) )
|
||||
if( !m_atnt && ( m_cpuArch == CpuArchX64 || m_cpuArch == CpuArchX86 ) )
|
||||
{
|
||||
auto uarch = MicroArchitectureData[m_idxMicroArch];
|
||||
char tmp[32];
|
||||
|
||||
Reference in New Issue
Block a user