llvm-6502/test/CodeGen/X86/x86-64-pic-7.ll
Rafael Espindola d674b4e87d add support for PIC on linux x86-64
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52139 91177308-0d34-0410-b5e6-96231b3b80d8
2008-06-09 09:52:31 +00:00

11 lines
204 B
LLVM

; RUN: llvm-as < %s | \
; RUN: llc -mtriple=x86_64-pc-linux -relocation-model=pic -o %t1 -f
; RUN: grep {movq f@GOTPCREL(%rip),} %t1
define void ()* @g() {
entry:
ret void ()* @f
}
declare void @f()