2009-09-12 02:36:27 +08:00
|
|
|
; RUN: llc < %s -mtriple=x86_64-pc-linux -relocation-model=pic -o %t1
|
2008-06-09 17:52:31 +08:00
|
|
|
; RUN: grep {call f} %t1
|
|
|
|
; RUN: not grep {call f@PLT} %t1
|
|
|
|
|
|
|
|
define void @g() {
|
|
|
|
entry:
|
|
|
|
call void @f( )
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
declare hidden void @f()
|