aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.target/i386/avx-vorpd-256-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.target/i386/avx-vorpd-256-1.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.target/i386/avx-vorpd-256-1.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.target/i386/avx-vorpd-256-1.c b/gcc-4.8/gcc/testsuite/gcc.target/i386/avx-vorpd-256-1.c
deleted file mode 100644
index ca60e24fc..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.target/i386/avx-vorpd-256-1.c
+++ /dev/null
@@ -1,32 +0,0 @@
-/* { dg-do run } */
-/* { dg-require-effective-target avx } */
-/* { dg-options "-O2 -mavx" } */
-
-#include "avx-check.h"
-
-void static
-avx_test (void)
-{
- int i;
- union256d u, s1, s2;
-
- union
- {
- double d[4];
- long long ll[4];
- }source1, source2, e;
-
- s1.x = _mm256_set_pd (34545, 95567, 23443, 5675);
- s2.x = _mm256_set_pd (674, 57897, 93459, 45624);
-
- _mm256_storeu_pd (source1.d, s1.x);
- _mm256_storeu_pd (source2.d, s2.x);
-
- u.x = _mm256_or_pd (s1.x, s2.x);
-
- for (i = 0; i < 4; i++)
- e.ll[i] = source1.ll[i] | source2.ll[i];
-
- if (check_union256d (u, e.d))
- abort ();
-}