In some rare cases, the register allocator can spill registers but end up not utilizi...
[llvm/msp430.git] / test / CodeGen / X86 / x86-64-pic-1.ll
blobf5303c6ad2d4f8602e467b2435560f3fbb891d02
1 ; RUN: llvm-as < %s | \
2 ; RUN:   llc -mtriple=x86_64-pc-linux -relocation-model=pic -o %t1 -f
3 ; RUN: grep {call       f@PLT} %t1
5 define void @g() {
6 entry:
7         call void @f( )
8         ret void
11 declare void @f()