[HLSL] Implement RWBuffer::operator[] via __builtin_hlsl_resource_getpointer (#117017)
[llvm-project.git] / llvm / test / tools / llvm-objcopy / ELF / multiple-symtab.test
blob964775edc9eb5a5b3d807744ee752e1e1b958006
1 ## According to the ELF gABI, "Currently, an object file may have only one
2 ## section of each type [SHT_SYMTAB and SHT_DYNSYM], but this restriction may be
3 ## relaxed in the future."
4 ## This test shows that we emit an error if we encounter multiple SHT_SYMTAB
5 ## sections.
6 # RUN: yaml2obj %s -o %t
7 # RUN: not llvm-objcopy %t /dev/null 2>&1 | FileCheck %s
9 # CHECK: error: found multiple SHT_SYMTAB sections
11 --- !ELF
12 FileHeader:
13   Class:   ELFCLASS64
14   Data:    ELFDATA2LSB
15   Type:    ET_REL
16 Sections:
17   - Name: .symtab
18     Type: SHT_SYMTAB
19   - Name: .symtab2
20     Type: SHT_SYMTAB