Check whole ignore list on ARM.

This commit is contained in:
Bartosz Taudul 2021-06-09 02:06:28 +02:00
parent 854613f210
commit e1c3babf43
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -529,9 +529,6 @@ static int CodeDataCb( void* data, uintptr_t pc, uintptr_t lowaddr, const char*
if( !fn ) return 1; if( !fn ) return 1;
const auto fnsz = strlen( fn ); 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 if( fnsz >= 19 ) // minimum length in s_tracySkipSubframes
{ {
auto ptr = 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 ); while( ptr->str );
} }
#endif
auto& sym = *(CallstackSymbolData*)data; auto& sym = *(CallstackSymbolData*)data;
sym.file = CopyString( fn ); sym.file = CopyString( fn );