2015-12-10 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx256-unaligned-load-6.c
blob2fa984cc4a64069e661ad8e6c21d56ece1e9d9b3
1 /* { dg-do run } */
2 /* { dg-require-effective-target avx } */
3 /* { dg-options "-O3 -dp -mavx -mavx256-split-unaligned-load" } */
5 #include "avx-check.h"
7 #define N 4
9 double a[N+3] = { -1, -1, -1, 24.43, 68.346, 43.35, 546.46 };
10 double b[N];
11 double c[N];
13 void
14 foo (void)
16 int i;
18 for (i = 0; i < N; i++)
19 b[i] = a[i+3] * 2;
22 __attribute__ ((noinline))
23 double
24 bar (double x)
26 return x * 2;
29 void
30 avx_test (void)
32 int i;
34 foo ();
36 for (i = 0; i < N; i++)
37 c[i] = bar (a[i+3]);
39 for (i = 0; i < N; i++)
40 if (b[i] != c[i])
41 abort ();