blob: 671b94d91593493cd0fd0a39c98b9791b21f9bc0 [file] [log] [blame]
Rafael Espindolae0ac18d2008-06-09 09:52:31 +00001; RUN: llvm-as < %s | \
Dan Gohman2d65d352009-08-25 15:38:29 +00002; RUN: llc -mtriple=x86_64-pc-linux -relocation-model=pic -o %t1
Rafael Espindolae0ac18d2008-06-09 09:52:31 +00003; RUN: grep {call f} %t1
4; RUN: not grep {call f@PLT} %t1
5
6define void @g() {
7entry:
8 call void @f( )
9 ret void
10}
11
12define internal void @f() {
13entry:
14 ret void
15}