Add a triple to switch.ll test.
[oota-llvm.git] / test / CodeGen / X86 / x86-64-pic-3.ll
1 ; RUN: llc < %s -mtriple=x86_64-pc-linux -relocation-model=pic | FileCheck %s
2
3
4 ; CHECK-NOT: {{callq    f@PLT}}
5 ; CHECK: {{callq        f}}
6 ; CHECK-NOT: {{callq    f@PLT}}
7
8 define void @g() {
9 entry:
10         call void @f( )
11         ret void
12 }
13
14 define internal void @f() {
15 entry:
16         ret void
17 }