Xamarin Public Jenkins (auto-signing) 64ac736ec5 Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
2019-04-12 14:10:50 +00:00

15 lines
373 B
LLVM

; RUN: llc < %s -mtriple=arm64-apple-ios7.0 | FileCheck %s
; rdar://9618644
@G = external global i32
define i32 @test(i32 %off) nounwind {
; CHECK-LABEL: test:
; CHECK: adrp x[[REG:[0-9]+]], _G@GOTPAGE
; CHECK: ldr x[[REG2:[0-9]+]], [x[[REG]], _G@GOTPAGEOFF]
; CHECK: add w0, w[[REG2]], w0
%tmp = ptrtoint i32* @G to i32
%tmp1 = add i32 %tmp, %off
ret i32 %tmp1
}