]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/pecoff/Inputs/grouped-sections.asm
Vendor import of lld trunk r233088:
[FreeBSD/FreeBSD.git] / test / pecoff / Inputs / grouped-sections.asm
1 .386
2 .model flat, c
3
4 _data$2 SEGMENT BYTE alias(".data$2")
5         db "orld", 0
6 _data$2 ends
7
8 _data$1 SEGMENT BYTE alias(".data$1")
9         db "o, w"
10 _data$1 ends
11
12 .data
13         db "Hell"
14
15 .code
16 main:
17         nop
18 end main