aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.target/i386/avx256-unaligned-load-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.target/i386/avx256-unaligned-load-1.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.target/i386/avx256-unaligned-load-1.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.target/i386/avx256-unaligned-load-1.c b/gcc-4.8/gcc/testsuite/gcc.target/i386/avx256-unaligned-load-1.c
deleted file mode 100644
index e7eef6d7a..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.target/i386/avx256-unaligned-load-1.c
+++ /dev/null
@@ -1,19 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-O3 -dp -mavx -mavx256-split-unaligned-load" } */
-
-#define N 1024
-
-float a[N], b[N+3], c[N];
-
-void
-avx_test (void)
-{
- int i;
-
- for (i = 0; i < N; i++)
- c[i] = a[i] * b[i+3];
-}
-
-/* { dg-final { scan-assembler-not "avx_loadups256" } } */
-/* { dg-final { scan-assembler "sse_loadups" } } */
-/* { dg-final { scan-assembler "vinsertf128" } } */