[ARM] Cortex-M4 schedule additions
[llvm-complete.git] / test / CodeGen / ARM / pie.ll
blob1b1e6e62fda5910243a3e87546121509a4c19be4
1 ; RUN: llc  -mtriple=armv7-pc-linux-gnueabi -relocation-model=pic < %s | FileCheck %s
3 @foo = global i32 42
5 define i32* @get_foo() {
6   ret i32* @foo
9 ; Test that we only use one load. Even that is only needed because there
10 ; doesn't seem to be pc relative relocations for movw movt.
11 ; CHECK:      ldr     r0, .LCPI0_0
12 ; CHECK-NEXT: .L{{.*}}:
13 ; CHECK-NEXT: add     r0, pc, r0
14 ; CHECK-NEXT: bx      lr
16 !llvm.module.flags = !{!0}
18 !0 = !{i32 1, !"PIE Level", i32 2}