Add missing newline to debug statement.
[llvm.git] / test / CodeGen / X86 / x86-64-pic-10.ll
blobb6f82e23b7e7bf6bd67a95bbea6cd804276f939c
1 ; RUN: llc < %s -mtriple=x86_64-pc-linux -relocation-model=pic -o %t1
2 ; RUN: grep {callq      g@PLT} %t1
4 @g = alias weak i32 ()* @f
6 define void @h() {
7 entry:
8         %tmp31 = call i32 @g()
9         ret void
12 declare extern_weak i32 @f()