Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / tools / yaml2obj / ELF / relocation-explicit-symbol-index.yaml
blob90429f4bd6f114c31764abb98c37c28659a9fef2
1 ## Test that a relocation's symbol can be an integer (symbol index).
3 # RUN: yaml2obj %s -o %t
4 ## LLVM tools (both llvm-readobj and llvm-objdump) reject relocations with
5 ## invalid symbol indexes, so inspect the hex contents instead.
6 # RUN: llvm-readobj -x .rela.text %t | FileCheck %s
8 # CHECK:      Hex dump of section '.rela.text':
9 # CHECK-NEXT: 0x00000000 00000000 00000000 02000000 42000000
10 #                               Symbol index 0x42 --^
11 # CHECK-NEXT: 0x00000010 00000000 00000000 00000000 00000000
12 # CHECK-NEXT: 0x00000020 02000000 01000000 00000000 00000000
13 #             Symbol index 0x01 --^
15 --- !ELF
16 FileHeader:
17   Class:   ELFCLASS64
18   Data:    ELFDATA2LSB
19   Type:    ET_REL
20   Machine: EM_X86_64
21 Sections:
22   - Name: .text
23     Type: SHT_PROGBITS
24   - Name: .rela.text
25     Type: SHT_RELA
26     Info: .text
27     Link: .symtab
28     Relocations:
29       - Type: R_X86_64_PC32
30         Symbol: 0x42
31       - Type: R_X86_64_PC32
32         Symbol: 0x1
33 Symbols:
34   - Name: foo
35     Binding: STB_GLOBAL