[HLSL] Implement RWBuffer::operator[] via __builtin_hlsl_resource_getpointer (#117017)
[llvm-project.git] / llvm / test / tools / llvm-objcopy / ELF / linked-section.test
blobeb54dedda447cc1d1ecc79e39a80ebf9f47bfcd8
1 ## This test checks that if a section has a sh_link field, and one or more
2 ## sections are removed such that the target section index changes, then
3 ## llvm-objcopy correctly updates the sh_link field.
5 # RUN: yaml2obj %s -o %t.o
6 # RUN: llvm-objcopy --remove-section .foo %t.o %t2.o
7 # RUN: llvm-readobj --section-headers %t2.o | FileCheck %s
9 --- !ELF
10 FileHeader:
11   Class:   ELFCLASS64
12   Data:    ELFDATA2LSB
13   Type:    ET_EXEC
14   Machine: EM_X86_64
15 Sections:
16   - Name: .foo
17     Type: SHT_PROGBITS
18   - Name: .bar
19     Type: SHT_PROGBITS
20   - Name: .baz
21     Type: SHT_PROGBITS
22     Link: .bar
24 # CHECK:      Index: 1
25 # CHECK-NEXT: Name: .bar
26 # CHECK:      Name: .baz
27 ## Find the next "Link" line, then check the value is exactly the index of .bar.
28 # CHECK:      Link
29 # CHECK-SAME:     : 1{{$}}