aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/gcc/testsuite/gcc.target/i386/avx-vmovups-256-1.c
blob: 87d8409983a14e6efab7167c9d40dc3916910ae1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* { dg-do run } */
/* { dg-require-effective-target avx } */
/* { dg-options "-O2 -mavx" } */

#include "avx-check.h"

static __m256
__attribute__((noinline, unused))
test (float *e)
{
  return _mm256_loadu_ps (e);
}

void static
avx_test (void)
{
  union256 u;
  float e [8]  = {24.43, 68.346, 43.35, 546.46, 46.79, 82.78, 82.7, 9.4};

  u.x = test (e);

  if (check_union256 (u, e))
    abort ();
}