summaryrefslogtreecommitdiff
path: root/test/ELF/no-merge.s
blob: 5d8b8570ab4927388e40a8d07ee932fe3b0936ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# REQUIRES: x86
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
# RUN: echo "SECTIONS { .data : {*(.data.*)} }" > %t0.script
# RUN: ld.lld %t.o -o %t0.out --script %t0.script
# RUN: llvm-objdump -s %t0.out | FileCheck %s --check-prefix=OPT
# OPT:      Contents of section .data:
# OPT-NEXT:   0000 01
# OPT-NEXT: Contents of section .data:
# OPT-NEXT:   0001 6100
# OPT-NEXT: Contents of section .data:
# OPT-NEXT:   0003 03

# RUN: ld.lld -O0 %t.o -o %t1.out --script %t0.script
# RUN: llvm-objdump -s %t1.out | FileCheck %s --check-prefix=NOOPT
# NOOPT:      Contents of section .data:
# NOOPT-NEXT:   0000 01610003

.section .data.aw,"aw",@progbits
.byte 1

.section .data.ams,"aMS",@progbits,1
.asciz "a"

.section .data.am,"aM",@progbits,1
.byte 3