mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
e40dbd6233
The current 8 bits is sufficient for ELF32 targets but ELF64 requires 32 bits. Add a test for AArch64 that exposes the issue. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222898 91177308-0d34-0410-b5e6-96231b3b80d8
56 lines
1.7 KiB
YAML
56 lines
1.7 KiB
YAML
# RUN: yaml2obj -format=elf %s > %t
|
|
# RUN: obj2yaml %t | FileCheck %s
|
|
|
|
# CHECK: - Name: .rela.text
|
|
# CHECK-NEXT: Type: SHT_RELA
|
|
# CHECK-NEXT: Link: .symtab
|
|
# CHECK-NEXT: AddressAlign: 0x0000000000000008
|
|
# CHECK-NEXT: Info: .text
|
|
# CHECK-NEXT: Relocations:
|
|
# CHECK-NEXT: - Offset: 0x0000000000000000
|
|
# CHECK-NEXT: Symbol: main
|
|
# CHECK-NEXT: Type: R_AARCH64_ABS64
|
|
# CHECK-NEXT: Addend: 0
|
|
# CHECK-NEXT: - Offset: 0x0000000000000008
|
|
# CHECK-NEXT: Symbol: main
|
|
# CHECK-NEXT: Type: R_AARCH64_TLSGD_ADR_PREL21
|
|
# CHECK-NEXT: Addend: 0
|
|
|
|
FileHeader:
|
|
Class: ELFCLASS64
|
|
Data: ELFDATA2LSB
|
|
Type: ET_REL
|
|
Machine: EM_AARCH64
|
|
Sections:
|
|
- Type: SHT_PROGBITS
|
|
Name: .text
|
|
Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
|
|
AddressAlign: 0x04
|
|
Content: 00000000000000000000000000000000
|
|
- Type: SHT_RELA
|
|
Name: .rela.text
|
|
Link: .symtab
|
|
Info: .text
|
|
AddressAlign: 0x08
|
|
Relocations:
|
|
- Offset: 0
|
|
Symbol: main
|
|
Type: R_AARCH64_ABS64
|
|
Addend: 0
|
|
- Offset: 8
|
|
Symbol: main
|
|
Type: R_AARCH64_TLSGD_ADR_PREL21
|
|
Addend: 0
|
|
|
|
Symbols:
|
|
Local:
|
|
- Name: .text
|
|
Type: STT_SECTION
|
|
Section: .text
|
|
|
|
Global:
|
|
- Name: main
|
|
Type: STT_FUNC
|
|
Section: .text
|
|
Size: 0x08
|