aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/parloops-exit-first-loop-alt-2.c
blob: f1cf75f1f5fd2ab4055f3d0c59274b7d2ff54a9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* { dg-do compile } */
/* { dg-require-effective-target pthread } */
/* { dg-options "-O2 -ftree-parallelize-loops=2 -fdump-tree-parloops-details" } */

/* Constant bound, vector addition.  */

#define N 1000

unsigned int a[N];
unsigned int b[N];
unsigned int c[N];

void
f (void)
{
  int i;

    for (i = 0; i < N; ++i)
      c[i] = a[i] + b[i];
}

/* { dg-final { scan-tree-dump-times "alternative exit-first loop transform succeeded" 1 "parloops" } } */