aboutsummaryrefslogtreecommitdiff
path: root/libgomp/testsuite/libgomp.c/parloops-exit-first-loop-alt-3.c
blob: 78365e868c173c8e75f2f7550aa9d1c25d731f2a (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
38
39
40
41
42
43
44
45
/* { dg-do run } */
/* { dg-additional-options "-ftree-parallelize-loops=2" } */

/* Variable bound, reduction.  */

#include <stdlib.h>

#define N 4000

unsigned int *a;

unsigned int __attribute__((noclone,noinline))
f (unsigned int n, unsigned int *__restrict__ a)
{
  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 (N, a);
  if (res != 11995)
    abort ();

  /* Test low iteration count case.  */
  res = f (10, a);
  if (res != 25)
    abort ();

  return 0;
}