1	.text
2	.globl		protected_foo
3	.type		protected_foo, @function
4	.protected	protected_foo
5protected_foo:
6	.word		0
7	ret
8	.size		protected_foo, . - protected_foo
9	.globl		hidden_foo
10	.type		hidden_foo, @function
11	.hidden		hidden_foo
12hidden_foo:
13	.word		0
14	ret
15	.size		hidden_foo, . - hidden_foo
16	.globl		internal_foo
17	.type		internal_foo, @function
18	.internal	internal_foo
19internal_foo:
20	.word		0
21	ret
22	.size		internal_foo, . - internal_foo
23