150
|
1 # REQUIRES: x86
|
|
2 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
|
|
3 # RUN: echo "SECTIONS { .rodata : {*(.rodata.*)} }" > %t0.script
|
|
4 # RUN: ld.lld %t.o -o %t0.out --script %t0.script
|
|
5 # RUN: llvm-objdump -s %t0.out | FileCheck %s
|
|
6
|
|
7 # RUN: ld.lld -O0 %t.o -o %t1.out --script %t0.script
|
|
8 # RUN: llvm-objdump -s %t1.out | FileCheck %s
|
|
9 # CHECK: Contents of section .rodata:
|
|
10 # CHECK-NEXT: 0000 01610003
|
|
11
|
|
12 .section .rodata.a,"a",@progbits
|
|
13 .byte 1
|
|
14
|
|
15 .section .rodata.ams,"aMS",@progbits,1
|
|
16 .asciz "a"
|
|
17
|
|
18 .section .rodata.am,"aM",@progbits,1
|
|
19 .byte 3
|