cpu/arm/__tls_get_addr.c: Use internal _Assert()

Updates #5238.
This commit is contained in:
Joel Sherrill
2025-06-09 13:30:45 -05:00
committed by Amar Takhar
parent 12f5c780c2
commit b495d9433a

View File

@@ -48,7 +48,7 @@ void *__tls_get_addr(const TLS_Index *ti)
void *tls_data = (char *) executing->Registers.thread_id
+ _TLS_Get_thread_control_block_area_size( &_TLS_Configuration );
assert(ti->module == 1);
_Assert(ti->module == 1);
return (char *) tls_data + ti->offset;
}