Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / ARM / pie.ll
blob38d6d4ccc2564503d1863ded7f688cf56a5d886e
1 ; RUN: llc  -mtriple=armv7-pc-linux-gnueabi -relocation-model=pic < %s | FileCheck %s
3 @foo = dso_local global i32 42
5 define dso_local ptr @get_foo() {
6   ret ptr @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}