blob: 34517bc7e221e3ba37406cfe0f24aa106b8d884b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
.text
.symver foo,foo@FOO
.globl foo
.type foo, @function
foo:
movq foobar@GOTPCREL(%rip), %rax
.size foo, .-foo
.globl bar
.type bar, @function
bar:
jmp *foo@GOTPCREL(%rip)
.size bar, .-bar
.comm foobar,30,4
|