aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/vec_return.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/vec_return.ll')
-rw-r--r--test/CodeGen/X86/vec_return.ll16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/CodeGen/X86/vec_return.ll b/test/CodeGen/X86/vec_return.ll
deleted file mode 100644
index f7fcd032cab3..000000000000
--- a/test/CodeGen/X86/vec_return.ll
+++ /dev/null
@@ -1,16 +0,0 @@
-; RUN: llc < %s -march=x86 -mattr=+sse2 | FileCheck %s
-
-; Without any typed operations, always use the smaller xorps.
-; CHECK: test
-; CHECK: xorps
-define <2 x double> @test() {
- ret <2 x double> zeroinitializer
-}
-
-; Prefer a constant pool load here.
-; CHECK: test2
-; CHECK-NOT: shuf
-; CHECK: movaps {{.*}}{{CPI|__xmm@}}
-define <4 x i32> @test2() nounwind {
- ret <4 x i32> < i32 0, i32 0, i32 1, i32 0 >
-}