blob: d46957ba16dde08c37c55fa16628b67bf08a2688 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* PR middle-end/99007 */
void
bar (int n)
{
int i;
long s[n];
for (i = 0; i < n; i++)
s[i] = 0;
#pragma omp teams distribute parallel for reduction(+:s) allocate(s)
for (i = 0; i < 8; i++)
s[3]++;
}
|