mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-12 15:05:06 +00:00
97130e2b3d
setting of ELF header e_flags. Contributer: Jack Carter git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173885 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
401 B
ArmAsm
14 lines
401 B
ArmAsm
@ RUN: llvm-mc %s -triple=armv7-linux-gnueabi -filetype=obj -o - | \
|
|
@ RUN: elf-dump --dump-section-data | FileCheck -check-prefix=OBJ %s
|
|
.syntax unified
|
|
.text
|
|
.globl barf
|
|
.align 2
|
|
.type barf,%function
|
|
barf: @ @barf
|
|
@ BB#0: @ %entry
|
|
b foo
|
|
|
|
@@@ make sure the EF_ARM_EABIMASK comes out OK
|
|
@OBJ: 'e_flags', 0x05000000
|