blob: c9b9bfb26db7256d5a33352d669e43dc07d25ff8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
.text
.globl _start
_start:
leaq foo@GOTTPOFF(%rip), %rax
movq (%rax), %rax
.globl foo
.section .tdata,"awT",@progbits
.align 4
.type foo, @object
.size foo, 4
foo:
.long 100
|