mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
f89da7210b
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179361 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
342 B
LLVM
15 lines
342 B
LLVM
; Codegen version to check for ELF header flags.
|
|
;
|
|
; RUN: llc %s -mtriple=thumbv7-linux-gnueabi -relocation-model=pic \
|
|
; RUN: -filetype=obj -o - | llvm-readobj -h | \
|
|
; RUN: FileCheck %s
|
|
|
|
define void @bar() nounwind {
|
|
entry:
|
|
ret void
|
|
}
|
|
|
|
; For now the only e_flag set is EF_ARM_EABI_VER5
|
|
; CHECK: ElfHeader {
|
|
; CHECK: Flags [ (0x5000000)
|