blob: ac420fa3662335d1cfa80061c91dbc0c542bab62 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/* { dg-do run } */
/* { dg-additional-options "-ftree-parallelize-loops=2" } */
/* Constant bound, reduction. */
#include <stdlib.h>
#define N 4000
unsigned int *a;
unsigned int
f (void)
{
int i;
unsigned int sum = 1;
for (i = 0; i < N; ++i)
sum += a[i];
return sum;
}
int
main (void)
{
unsigned int res;
unsigned int array[N];
int i;
for (i = 0; i < N; ++i)
array[i] = i % 7;
a = &array[0];
res = f ();
if (res != 11995)
abort ();
return 0;
}
|