blob: 0d5b7714d871d7a1159c80a4c058ae819d9c7e05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
.weak __start_xx
.weak __stop_xx
.text
.global foo
foo:
movq __start_xx@gotpcrel(%rip), %rax
movq __stop_xx@gotpcrel(%rip), %rax
.section xx,"a",unique,0
.byte 0
.section xx,"a",unique,1
.byte 1
|