aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/x86-64-pic-3.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/x86-64-pic-3.ll')
-rw-r--r--test/CodeGen/X86/x86-64-pic-3.ll17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/CodeGen/X86/x86-64-pic-3.ll b/test/CodeGen/X86/x86-64-pic-3.ll
deleted file mode 100644
index 1b0ddc6fe5ad..000000000000
--- a/test/CodeGen/X86/x86-64-pic-3.ll
+++ /dev/null
@@ -1,17 +0,0 @@
-; 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
-}