PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx-setzero-si256-1.c
blob01eef2a4e30ee7ace20692a7a0188a518f59d912
1 /* { dg-do run } */
2 /* { dg-require-effective-target avx } */
3 /* { dg-options "-O2 -mavx" } */
5 #include "avx-check.h"
7 void static
8 avx_test (void)
10 int i;
11 union256i_q u;
12 long long e [4];
14 u.x = _mm256_setzero_si256 ();
16 for (i = 0; i < 4; i++)
17 e[i] = 0;
19 if (check_union256i_q (u, e))
20 abort ();