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

14 lines
251 B
LLVM

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