mirror of https://git.musl-libc.org/git/musl
Browse Source
this code will not work yet because the necessary relocations are not supported, and cannot be supported without some internal changes to how relocation processing works (coming soon).rs-1.0
4 changed files with 19 additions and 1 deletions
@ -0,0 +1,8 @@ |
|||
.text |
|||
.global ___tls_get_addr |
|||
.type ___tls_get_addr,@function |
|||
___tls_get_addr: |
|||
push %eax |
|||
call __tls_get_addr |
|||
pop %edx |
|||
ret |
|||
Loading…
Reference in new issue