From e1c3babf431e229e1bb0a554f2a6590db4691f51 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 9 Jun 2021 02:06:28 +0200 Subject: [PATCH] Check whole ignore list on ARM. --- client/TracyCallstack.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/client/TracyCallstack.cpp b/client/TracyCallstack.cpp index fa93d0f5..b1509a71 100644 --- a/client/TracyCallstack.cpp +++ b/client/TracyCallstack.cpp @@ -529,9 +529,6 @@ static int CodeDataCb( void* data, uintptr_t pc, uintptr_t lowaddr, const char* if( !fn ) return 1; const auto fnsz = strlen( fn ); -#if defined __aarch64__ || defined __ARM_ARCH - if( fnsz >= 19 && memcmp( "/include/arm_neon.h", fn + fnsz - 19, 19 ) == 0 ) return 0; -#else if( fnsz >= 19 ) // minimum length in s_tracySkipSubframes { auto ptr = s_tracySkipSubframes; @@ -542,7 +539,6 @@ static int CodeDataCb( void* data, uintptr_t pc, uintptr_t lowaddr, const char* } while( ptr->str ); } -#endif auto& sym = *(CallstackSymbolData*)data; sym.file = CopyString( fn );