ELF: Add support for unique section ID to assembler
[deliverable/binutils-gdb.git] / gas / testsuite / gas / elf / section16.s
1 .section .mbind.data,"adw",%progbits,unique,0
2 .byte 1
3
4 .section .mbind.data,"adw",%progbits,0x3,unique,1
5 .byte 2
6
7 .section .mbind.text,"adx",%progbits,unique,2
8 .byte 3
9
10 .section .mbind.text,"adx",%progbits,0x3,unique,3
11 .byte 4
12
13 .section .mbind.bss,"adw",%nobits,unique,4
14 .zero 5
15
16 .section .mbind.bss,"adw",%nobits,0x3,unique,5
17 .zero 6
18
19 .section .mbind.rodata,"adG",%progbits,.foo_group,comdat,0x2,unique,6
20 .byte 7
21
22 .section .mbind.data,"adGw",%progbits,.foo_group,comdat,unique,7
23 .byte 8
24
25 .section .mbind.data,"adGw",%progbits,.foo_group,comdat,0x3,unique,8
26 .byte 9
27
28 # Check that .pushsection works as well.
29 .pushsection .mbind.text,"adGx",%progbits,.foo_group,comdat,0x3,unique,9
30 .byte 10
31
32 .popsection
33 .byte 11
This page took 0.02998 seconds and 4 git commands to generate.