Mercurial > hg > CbC > CbC_llvm
annotate test/CodeGen/X86/x86-64-pic-3.ll @ 95:afa8332a0e37 LLVM3.8
LLVM 3.8
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 13 Oct 2015 17:48:58 +0900 |
parents | 95c75e76d11b |
children |
rev | line source |
---|---|
0 | 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 } |