blob: 2495180c30539a447d76e748e1cf749b755c24a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# RUN: yaml2obj %s -o %t.o
# RUN: not llvm-readobj --arch-specific %t.o %null 2>&1 | FileCheck %s
# CHECK: unable to dump attributes from the Unknown section with index 1: unrecognized format-version: 0x37
# Version is 37 instead of 41, this is the first byte.
--- !ELF
FileHeader:
Class: ELFCLASS64
Data: ELFDATA2LSB
OSABI: ELFOSABI_NONE
Type: ET_REL
Machine: EM_AARCH64
Entry: 0x0
Sections:
- Name: .ARM.attributes
Type: 0x70000003 # SHT_LOPROC + 3
AddressAlign: 1
Offset: 0x40
Size: 0x3d
Content: "371900000061656162695f7061757468616269000000010102012300000061656162695f666561747572655f616e645f62697473000100000101010201"
...
|