Files
clang-p2996/lld/test/ELF/invalid/invalid-relocation-aarch64.test
Georgii Rymar e4ceb8f421 [lib/ObjectYAML] - Make ELFYAML::Relocation::Offset optional.
Currently `yaml2obj` require `Offset` field in a relocation description.
There are many cases when `Offset` is insignificant in a context of a test case.

Making `Offset` optional allows to simplify our test cases.
This is what this patch does.

Also, with this patch `obj2yaml` does not dump a zero offset of a relocation.

Differential revision: https://reviews.llvm.org/D75608
2020-03-06 13:59:58 +03:00

30 lines
814 B
Plaintext

# REQUIRES: aarch64
# RUN: yaml2obj %s -o %t.o
# RUN: not ld.lld %t.o -o /dev/null 2>&1 | FileCheck %s
# CHECK: error: unknown relocation (1024) against symbol foo
# CHECK: error: unknown relocation (1025) against symbol foo
!ELF
FileHeader:
Class: ELFCLASS64
Data: ELFDATA2LSB
Type: ET_REL
Machine: EM_AARCH64
Sections:
- Name: .text
Type: SHT_PROGBITS
Flags: [ SHF_ALLOC ]
- Name: .rela.text
Type: SHT_RELA
Link: .symtab
Info: .text
Relocations:
- Symbol: foo
Type: 0x400
- Symbol: foo
Type: 0x401
Symbols:
- Name: foo
Section: .text
Binding: STB_GLOBAL