mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
d68dfedd72
To improve consistency and avoid unneeded shell feature (output redirection). While here, make other changes to improve consistency --docnum 1 => --docnum=1 -docnum=x => --docnum=x
17 lines
423 B
Plaintext
17 lines
423 B
Plaintext
# RUN: yaml2obj %s -o %t
|
|
# RUN: llvm-objcopy %t %t2
|
|
# RUN: llvm-readobj --file-headers %t2 | FileCheck %s
|
|
|
|
## Check that llvm-objcopy preserves the OSABI and ABIVersion fields.
|
|
# CHECK: OS/ABI: FreeBSD (0x9)
|
|
# CHECK: ABIVersion: 1
|
|
|
|
!ELF
|
|
FileHeader:
|
|
Class: ELFCLASS64
|
|
Data: ELFDATA2LSB
|
|
OSABI: ELFOSABI_FREEBSD
|
|
ABIVersion: 1
|
|
Type: ET_REL
|
|
Machine: EM_AARCH64
|