18 lines · plain
1; RUN: llc < %s -mtriple=x86_64-pc-linux -relocation-model=pic | FileCheck %s2 3 4; CHECK-NOT: {{callq f@PLT}}5; CHECK: {{callq f}}6; CHECK-NOT: {{callq f@PLT}}7 8define void @g() {9entry:10 call void @f( )11 ret void12}13 14define internal void @f() {15entry:16 ret void17}18