blob: 46f6d335d05c7ae4ae1cec1ead680d2aaba2743c [file] [log] [blame]
Dan Gohman0cb2f672009-09-11 18:36:27 +00001; RUN: llc < %s -mtriple=x86_64-pc-linux -relocation-model=pic -o %t1
Sean Callanan2c48df22009-12-18 00:01:26 +00002; RUN: grep {callq f@PLT} %t1
Rafael Espindolae0ac18d2008-06-09 09:52:31 +00003
4define void @g() {
5entry:
6 call void @f( )
7 ret void
8}
9
10declare void @f()