1# Test SIZE32 relocation overflow 2 .local yyy 3 .comm yyy,80,32 4 .text 5 movl $xxx@SIZE + 100, %eax 6 movl $yyy@SIZE - 100, %eax 7 .local xxx 8 .comm xxx,4294967290,32 9 .data 10 .long xxx@SIZE + 100 11 .long yyy@SIZE - 100 12