blob: b21918ef80d4b43db2e7eec5cf3388af98eeac01 [file] [log] [blame]
Dan Gohmana0801592009-09-11 18:36:27 +00001; RUN: llc < %s -mtriple=x86_64-pc-linux -relocation-model=pic -o %t1
Rafael Espindola29479df2008-06-09 09:52:31 +00002; RUN: grep {call f@PLT} %t1
3
4define void @g() {
5entry:
6 call void @f( )
7 ret void
8}
9
10declare void @f()