[flang][cuda] Add c_devloc as intrinsic and inline it during lowering (#120648)
[llvm-project.git] / lld / test / ELF / linkerscript / output-section-include.test
blobc4d502c307d3e86239273173dc4402ba28cd90b3
1 # REQUIRES: x86
3 # RUN: echo '.section .text,"ax"; .global _start; nop' > %t.s
4 # RUN: echo '.section .data,"aw"; .quad 0' >> %t.s
5 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %t.s -o %t.o
7 ## Empty include file.
8 # RUN: rm -rf %t.dir && mkdir -p %t.dir
9 # RUN: echo "" > %t.dir/inc.script
10 # RUN: ld.lld -o %t.elf --script %s %t.o -L %t.dir
11 # RUN: llvm-objdump --section-headers %t.elf | FileCheck %s --check-prefix=CHECK1
12 # CHECK1: .data         00000008 0000000000002000 DATA
14 ## Non-empty include file.
15 # RUN: echo "QUAD(0)" > %t.dir/inc.script
16 # RUN: ld.lld -o %t.elf --script %s %t.o -L %t.dir
17 # RUN: llvm-objdump --section-headers %t.elf | FileCheck %s --check-prefix=CHECK2
18 # CHECK2: .data         00000010 0000000000002000 DATA
20 MEMORY {
21   ROM (rwx): ORIGIN = 0x1000, LENGTH = 0x100
22   RAM (rwx): ORIGIN = 0x2000, LENGTH = 0x100
25 SECTIONS {
26   .text : { *(.text*) } > ROM
27   .data : {
28     *(.data*)
29     INCLUDE "inc.script"
30   } > RAM