1# Test SIZE32 relocations against global TLS 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	.section .tbss,"awT",%nobits
10	.global	yyy
11	.type	yyy,%object
12	.size	yyy,30
13yyy:
14	.zero	30
15	.section .tdata,"awT",%progbits
16	.global	xxx
17	.type	xxx,%object
18	.size	xxx,80
19xxx:
20	.zero	80
21	.long	xxx@SIZE - 1
22	.long	yyy@SIZE + 2
23