1	.text
2	.type	foo, @function
3foo:
4	ret
5	.size	foo, .-foo
6	.globl	_start
7	.type	_start, @function
8_start:
9	movq	foo@GOTPCREL(%rip), %rax
10	.size	_start, .-_start
11