x86-64-pic-3.ll 263 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 ; RUN: llc < %s -mtriple=x86_64-pc-linux -relocation-model=pic | FileCheck %s ; CHECK-NOT: {{callq f@PLT}} ; CHECK: {{callq f}} ; CHECK-NOT: {{callq f@PLT}} define void @g() { entry: call void @f( ) ret void } define internal void @f() { entry: ret void }