aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.target/i386/recip-vec-divf-avx.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.target/i386/recip-vec-divf-avx.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.target/i386/recip-vec-divf-avx.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.target/i386/recip-vec-divf-avx.c b/gcc-4.8/gcc/testsuite/gcc.target/i386/recip-vec-divf-avx.c
deleted file mode 100644
index 8aeec20d5..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.target/i386/recip-vec-divf-avx.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-O2 -ffast-math -ftree-vectorize -mavx -mtune=generic -mfpmath=sse -mrecip" } */
-
-float a[32];
-float b[32];
-float r[32];
-
-void t1(void)
-{
- int i;
-
- for (i = 0; i < 32; i++)
- r[i] = a[i] / b[i];
-}
-
-/* { dg-final { scan-assembler "vrcpps\[ \\t\]+\[^\n\]*%ymm" } } */