36 lines
1.1 KiB
ArmAsm
36 lines
1.1 KiB
ArmAsm
# REQUIRES: x86
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t
|
|
# RUN: echo "SECTIONS { \
|
|
# RUN: .writable : ONLY_IF_RW { *(.writable) } \
|
|
# RUN: .readable : ONLY_IF_RO { *(.readable) }}" > %t.script
|
|
# RUN: ld.lld -o %t1 --script %t.script %t
|
|
# RUN: llvm-objdump -section-headers %t1 | \
|
|
# RUN: FileCheck -check-prefix=BASE %s
|
|
# BASE: Sections:
|
|
# BASE-NEXT: Idx Name Size Address Type
|
|
# BASE-NEXT: 0 00000000 0000000000000000
|
|
# BASE-NEXT: 1 .writable 00000004 0000000000000190 DATA
|
|
# BASE-NEXT: 2 .readable 00000004 0000000000000194 DATA
|
|
|
|
# RUN: echo "SECTIONS { \
|
|
# RUN: .writable : ONLY_IF_RO { *(.writable) } \
|
|
# RUN: .readable : ONLY_IF_RW { *(.readable) }}" > %t.script
|
|
# RUN: ld.lld -o %t1 --script %t.script %t
|
|
# RUN: llvm-objdump -section-headers %t1 | \
|
|
# RUN: FileCheck -check-prefix=NOSECTIONS %s
|
|
# NOSECTIONS: Sections:
|
|
# NOSECTIONS-NOT: .writable
|
|
# NOSECTIONS-NOT: .readable
|
|
|
|
.global _start
|
|
_start:
|
|
nop
|
|
|
|
.section .writable, "aw"
|
|
writable:
|
|
.long 1
|
|
|
|
.section .readable, "a"
|
|
readable:
|
|
.long 2
|