blob: 43656cf810b5e613dbd578ba88b67d80bfa6fdb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* { 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;
double e [4];
u.x = _mm256_setzero_pd ();
for (i = 0; i < 4; i++)
e[i] = 0.0;
if (check_union256d (u, e))
abort ();
}
|