1	.section	.text.start,"ax",@progbits
2	.globl	start
3	.type	start, @function
4start:
5	.cfi_startproc
6	jmp	foo
7	.cfi_endproc
8	.size	start, .-start
9	.section	.text.foo,"ax",@progbits
10	.globl	foo
11	.type	foo, @function
12foo:
13	.cfi_startproc
14	ret
15	.cfi_endproc
16	.size	foo, .-foo
17