1# Test SIZE32 relocations against local symbols
2	.text
3	movl	$xxx@SIZE, %eax
4	movl	$xxx@SIZE - 8, %eax
5	movl	$xxx@SIZE + 8, %eax
6	movl	$yyy@SIZE, %eax
7	movl	$yyy@SIZE - 16, %eax
8	movl	$yyy@SIZE + 16, %eax
9	movl	$zzz@SIZE, %eax
10	movl	$zzz@SIZE - 32, %eax
11	movl	$zzz@SIZE + 32, %eax
12	movl	$.text@SIZE, %eax
13	movl	$.data@SIZE + 4, %eax
14	movl	$.bss@SIZE - 0x10000000, %eax
15	.local	zzz
16	.comm	zzz,429496720,32
17	.bss
18	.type	yyy,%object
19	.size	yyy,30
20yyy:
21	.zero	30
22	.data
23	.type	xxx,%object
24	.size	xxx,80
25xxx:
26	.zero	80
27	.long	xxx@SIZE - 1
28	.long	yyy@SIZE + 2
29	.long	zzz@SIZE
30