1
2L01:	.space 10
3
4L02:	.space 10
5
6
7	.non_lazy_symbol_pointer
8
9	a = 5
10	.indirect_symbol a
11	.space 4
12
13	.indirect_symbol L01
14	.long L01-.
15
16	.indirect_symbol b
17	.space 4
18
19	b = 10
20
21	.globl c
22	c = 20
23	.indirect_symbol c
24	.space 4
25