llvm-6502/test/CodeGen/X86/x86-64-pic-3.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

16 lines
256 B
LLVM

; RUN: llvm-as < %s | \
; RUN: llc -mtriple=x86_64-pc-linux -relocation-model=pic -o %t1 -f
; RUN: grep {call f} %t1
; RUN: not grep {call f@PLT} %t1
define void @g() {
entry:
call void @f( )
ret void
}
define internal void @f() {
entry:
ret void
}