blob: 35cb904a540f142c1cfa08a110a67b597dcf8fa1 [file] [log] [blame]
/* { dg-do run } */
/* { dg-options "-O3 -fcilkplus" } */
#define N 256
#if HAVE_IO
#include <stdio.h>
#endif
#include <stdlib.h>
int
reduction_simd (int *a)
{
int s = 0;
#pragma simd reduction (+:s)
for (int i = 0; i < N; i++)
{
s += a[i];
}
return s;
}
int
main ()
{
int *a = (int *) malloc (N * sizeof (int));
int i, s = (N - 1) * N / 2;
for (i = 0; i < N; i++)
{
a[i] = i;
}
#if HAVE_IO
printf ("%d, %d\n", s, reduction_simd (a));
#endif
if (s == reduction_simd (a))
return 0;
else
return 1;
}