1	.globl  _start
2	.type	_start, @function
3_start:
4	movq	$foo, %rax
5	.size	_start, .-_start
6	.data
7foo:
8	.quad	0
9