x86/Intel: fix fallout from earlier template folding
[deliverable/binutils-gdb.git] / gas / testsuite / gas / i386 / size-4.s
1 # Test SIZE32 relocations against local 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 .type yyy,%object
11 .size yyy,30
12 yyy:
13 .zero 30
14 .section .tdata,"awT",%progbits
15 .type xxx,%object
16 .size xxx,80
17 xxx:
18 .zero 80
19 .long xxx@SIZE - 1
20 .long yyy@SIZE + 2
This page took 0.029536 seconds and 4 git commands to generate.