mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
13 lines
180 B
ArmAsm
13 lines
180 B
ArmAsm
|
.text
|
||
|
.globl _start
|
||
|
_start:
|
||
|
leal foo@indntpoff, %ecx
|
||
|
movl (%ecx), %ecx
|
||
|
.globl foo
|
||
|
.section .tdata,"awT",@progbits
|
||
|
.align 4
|
||
|
.type foo, @object
|
||
|
.size foo, 4
|
||
|
foo:
|
||
|
.long 100
|