aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/avx512f-set-v8di-3.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/gcc.target/i386/avx512f-set-v8di-3.c')
-rw-r--r--gcc-4.9/gcc/testsuite/gcc.target/i386/avx512f-set-v8di-3.c43
1 files changed, 43 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/gcc.target/i386/avx512f-set-v8di-3.c b/gcc-4.9/gcc/testsuite/gcc.target/i386/avx512f-set-v8di-3.c
new file mode 100644
index 000000000..16e12c7f1
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/gcc.target/i386/avx512f-set-v8di-3.c
@@ -0,0 +1,43 @@
+/* { dg-do run } */
+/* { dg-options "-O2 -mavx512f" } */
+/* { dg-require-effective-target avx512f } */
+
+#include "avx512f-check.h"
+
+static __m512i
+__attribute__ ((noinline))
+foo (long long x)
+{
+ return _mm512_set_epi64 (x, x, x, x, x, x, x, x);
+}
+
+static __m512i
+__attribute__ ((noinline))
+foo_r (long long x)
+{
+ return _mm512_setr_epi64 (x, x, x, x, x, x, x, x);
+}
+
+static void
+avx512f_test (void)
+{
+ int i;
+ long long e = 0xfed178ab134badf1LL;
+ long long v[8];
+ union512i_q res;
+
+ for (i = 0; i < 8; i++)
+ v[i] = e;
+
+ res.x = foo (e);
+
+ if (check_union512i_q (res, v))
+ abort ();
+
+ res.x = _mm512_setzero_si512 ();
+
+ res.x = foo_r (e);
+
+ if (check_union512i_q (res, v))
+ abort ();
+}