2008-06-09 09:52:31 +00:00
|
|
|
; RUN: llvm-as < %s | \
|
2009-08-25 15:38:29 +00:00
|
|
|
; RUN: llc -mtriple=x86_64-pc-linux -relocation-model=pic -o %t1
|
2008-06-09 09:52:31 +00:00
|
|
|
; RUN: grep {call f@PLT} %t1
|
|
|
|
|
|
|
|
define void @g() {
|
|
|
|
entry:
|
|
|
|
call void @f( )
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
declare void @f()
|