aboutsummaryrefslogtreecommitdiff
path: root/lld/test/ELF/linkerscript/merge-nonalloc.s
blob: de4a1d5c3e49f06d04dfae0de60e52d91078d8a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# REQUIRES: x86
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
# RUN: echo "SECTIONS { .text : { *(.text) *(.nonalloc) } }" > %t.script
# RUN: ld.lld -shared -o %t.exe %t.script %t.o
# RUN: llvm-objdump -syms %t.exe | FileCheck %s

# CHECK: .text 0000000000000000 nonalloc_start

_start:
  nop

.section .nonalloc,"",@progbits
nonalloc_start:
  .long 0xcafe