blob: a64bae16fed95d7789eb08a37c780181590db631 (
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:
movl foobar@GOT(%ebx), %eax
.size foo, .-foo
.globl bar
.type bar, @function
bar:
jmp *foo@GOT(%eax)
.size bar, .-bar
.comm foobar,30,4
|