1	.text
2.globl foo
3	.protected	foo
4	.type	foo, @function
5foo:
6	ret
7	.size	foo, .-foo
8.globl bar
9	.type	bar, @function
10bar:
11	leal	foo@GOTOFF(%ecx), %eax
12	ret
13	.size	bar, .-bar
14