aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/avx-256.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/avx-256.ll')
-rw-r--r--test/CodeGen/X86/avx-256.ll15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/CodeGen/X86/avx-256.ll b/test/CodeGen/X86/avx-256.ll
deleted file mode 100644
index 20d31e7388..0000000000
--- a/test/CodeGen/X86/avx-256.ll
+++ /dev/null
@@ -1,15 +0,0 @@
-; RUN: llc < %s -mtriple=x86_64-apple-darwin -march=x86 -mcpu=corei7 -mattr=avx | FileCheck %s
-
-@x = common global <8 x float> zeroinitializer, align 32
-@y = common global <4 x double> zeroinitializer, align 32
-
-define void @zero() nounwind ssp {
-entry:
- ; CHECK: vxorps
- ; CHECK: vmovaps
- ; CHECK: vmovaps
- store <8 x float> zeroinitializer, <8 x float>* @x, align 32
- store <4 x double> zeroinitializer, <4 x double>* @y, align 32
- ret void
-}
-