i386: Move ___tls_get_addr hidden proto before its first usage

clang can not apply asm redirections to functions after these
functions are used for the first time.
This commit is contained in:
Adhemerval Zanella 2022-07-26 08:41:10 -03:00
parent 1d211faaf7
commit 0d5dc6d05a
1 changed files with 2 additions and 2 deletions

View File

@ -39,6 +39,8 @@ extern void *___tls_get_addr (tls_index *ti)
__attribute__ ((__regparm__ (1)));
extern void *___tls_get_addr_internal (tls_index *ti)
__attribute__ ((__regparm__ (1))) attribute_hidden;
rtld_hidden_proto (___tls_get_addr)
rtld_hidden_def (___tls_get_addr)
# if IS_IN (rtld)
/* The special thing about the x86 TLS ABI is that we have two
@ -58,8 +60,6 @@ __tls_get_addr (tls_index *ti)
version of this file. */
# define __tls_get_addr __attribute__ ((__regparm__ (1))) ___tls_get_addr
strong_alias (___tls_get_addr, ___tls_get_addr_internal)
rtld_hidden_proto (___tls_get_addr)
rtld_hidden_def (___tls_get_addr)
#else
/* Users should get the better interface. */