aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/vector-variable-idx.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/vector-variable-idx.ll')
-rw-r--r--test/CodeGen/X86/vector-variable-idx.ll11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/CodeGen/X86/vector-variable-idx.ll b/test/CodeGen/X86/vector-variable-idx.ll
deleted file mode 100644
index 2a4d18c141a3..000000000000
--- a/test/CodeGen/X86/vector-variable-idx.ll
+++ /dev/null
@@ -1,11 +0,0 @@
-; RUN: llc < %s -march=x86-64 | grep movss | count 2
-; PR2676
-
-define float @foo(<4 x float> %p, i32 %t) {
- %z = extractelement <4 x float> %p, i32 %t
- ret float %z
-}
-define <4 x float> @bar(<4 x float> %p, float %f, i32 %t) {
- %z = insertelement <4 x float> %p, float %f, i32 %t
- ret <4 x float> %z
-}