1// REQUIRES: arm
2// RUN: llvm-mc -filetype=obj -triple=armv7a-none-linux-gnueabi %s -o %t.o
3// RUN: ld.lld -static %t.o -o %tout
4// RUN: llvm-readobj --file-headers %tout | FileCheck %s
5 .syntax unified
6 .text
7 .globl _start
8_start:
9 bx lr
10
11// CHECK:  Flags [
12// CHECK-NEXT:    0x200
13// CHECK-NEXT:    0x1000000
14// CHECK-NEXT:    0x4000000
15// CHECK-NEXT:  ]
16