summaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/X86/x86-64-pic-4.ll
blob: 108a5d26de01347bcda348a0ba3647d70e61a10c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -mtriple=x86_64-pc-linux -relocation-model=pic | FileCheck %s

@a = global i32 0

define i32 @get_a() {
; CHECK-LABEL: get_a:
; CHECK:       # %bb.0: # %entry
; CHECK-NEXT:    movq a@GOTPCREL(%rip), %rax
; CHECK-NEXT:    movl (%rax), %eax
; CHECK-NEXT:    retq
entry:
	%tmp1 = load i32, ptr @a, align 4
	ret i32 %tmp1
}