diff options
Diffstat (limited to 'test/CodeGen/X86/x86-64-pic-3.ll')
-rw-r--r-- | test/CodeGen/X86/x86-64-pic-3.ll | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/CodeGen/X86/x86-64-pic-3.ll b/test/CodeGen/X86/x86-64-pic-3.ll new file mode 100644 index 0000000000..0f5f4b706a --- /dev/null +++ b/test/CodeGen/X86/x86-64-pic-3.ll @@ -0,0 +1,15 @@ +; RUN: llvm-as < %s | \ +; RUN: llc -mtriple=x86_64-pc-linux -relocation-model=pic -o %t1 -f +; RUN: grep {call f} %t1 +; RUN: not grep {call f@PLT} %t1 + +define void @g() { +entry: + call void @f( ) + ret void +} + +define internal void @f() { +entry: + ret void +} |