blob: 6a45f008bf362fd4a30bb8b72a77b58bd88cb535 [file] [log] [blame]
Rafael Espindola70c6a392016-08-24 19:02:29 +00001; RUN: llc < %s -mtriple=thumbv7em-apple-unknown-macho | FileCheck %s
2
3; CHECK: movw r0, :lower16:(L_bar$non_lazy_ptr-(LPC0_0+4))
4; CHECK: movt r0, :upper16:(L_bar$non_lazy_ptr-(LPC0_0+4))
5
6@bar = external hidden global i32
7define i32 @foo() {
8 %tmp = load i32, i32* @bar, align 4
9 ret i32 %tmp
10}