mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
14 lines
240 B
ArmAsm
14 lines
240 B
ArmAsm
|
.text
|
||
|
.globl _start
|
||
|
.type _start, @function
|
||
|
_start:
|
||
|
lea foo@TLSDESC(%rip), %eax
|
||
|
call *foo@TLSCALL(%eax)
|
||
|
.section .tdata,"awT",@progbits
|
||
|
.align 4
|
||
|
.type foo, @object
|
||
|
.size foo, 4
|
||
|
foo:
|
||
|
.long 30
|
||
|
.section .note.GNU-stack,"",@progbits
|