mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
002ba57eb7
Summary: The FileHeader mapping now accepts an optional Flags sequence that accepts the EF_<arch>_<flag> constants. When not given, Flags defaults to zero. Reviewers: atanasyan Reviewed By: atanasyan CC: llvm-commits Differential Revision: http://llvm-reviews.chandlerc.com/D3213 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205173 91177308-0d34-0410-b5e6-96231b3b80d8
17 lines
374 B
YAML
17 lines
374 B
YAML
# RUN: yaml2obj -format=elf %s | llvm-readobj -file-headers - | FileCheck %s
|
|
!ELF
|
|
FileHeader:
|
|
Class: ELFCLASS32
|
|
Data: ELFDATA2LSB
|
|
Type: ET_REL
|
|
Machine: EM_MIPS
|
|
Flags: [ EF_MIPS_NOREORDER, EF_MIPS_ABI_O32 ]
|
|
|
|
# CHECK: Format: ELF32-mips
|
|
# CHECK: Arch: mipsel
|
|
# CHECK: Machine: EM_MIPS
|
|
# CHECK: Flags [ (0x1001)
|
|
# CHECK-NEXT: 0x1
|
|
# CHECK-NEXT: 0x1000
|
|
# CHECK-NEXT: ]
|