blob: 10428dc6dbef3b249382ce8e7f1e35672459e230 [file] [log] [blame]
Rafael Espindolae0ac18d2008-06-09 09:52:31 +00001; RUN: llvm-as < %s | \
Dan Gohman2d65d352009-08-25 15:38:29 +00002; RUN: llc -mtriple=x86_64-pc-linux -relocation-model=pic -o %t1
Rafael Espindolae0ac18d2008-06-09 09:52:31 +00003; RUN: grep {movq a@GOTPCREL(%rip),} %t1
4
5@a = global i32 0
6
7define i32 @get_a() {
8entry:
9 %tmp1 = load i32* @a, align 4
10 ret i32 %tmp1
11}