summaryrefslogtreecommitdiff
path: root/test/ELF/no-merge.s
diff options
context:
space:
mode:
Diffstat (limited to 'test/ELF/no-merge.s')
-rw-r--r--test/ELF/no-merge.s22
1 files changed, 8 insertions, 14 deletions
diff --git a/test/ELF/no-merge.s b/test/ELF/no-merge.s
index 5d8b8570ab49..c8132c259e96 100644
--- a/test/ELF/no-merge.s
+++ b/test/ELF/no-merge.s
@@ -1,25 +1,19 @@
# REQUIRES: x86
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
-# RUN: echo "SECTIONS { .data : {*(.data.*)} }" > %t0.script
+# RUN: echo "SECTIONS { .rodata : {*(.rodata.*)} }" > %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: llvm-objdump -s %t0.out | FileCheck %s
# 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
+# RUN: llvm-objdump -s %t1.out | FileCheck %s
+# CHECK: Contents of section .rodata:
+# CHECK-NEXT: 0000 01610003
-.section .data.aw,"aw",@progbits
+.section .rodata.a,"a",@progbits
.byte 1
-.section .data.ams,"aMS",@progbits,1
+.section .rodata.ams,"aMS",@progbits,1
.asciz "a"
-.section .data.am,"aM",@progbits,1
+.section .rodata.am,"aM",@progbits,1
.byte 3