1	.type	bar, @function
2bar:
3	ret
4	.size	bar, .-bar
5.globl foo
6	.type	foo, @function
7foo:
8	leal	bar, %eax
9	ret
10	.size	foo, .-foo
11