aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/vect/vect-99.c
blob: d29023c733ecc11ab434728f7f1260b2e684bf41 (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
/* { dg-require-effective-target vect_int } */

#include <stdlib.h>
#include "tree-vect.h"

int ca[100];

__attribute__ ((noinline))
void foo (int n)
{
  unsigned int i;

  for (i = 0; i < n; i++)
    ca[i] = 2;
}

int main (void)
{
  int i;

  check_vect ();

  foo(100);

  for (i = 0; i < 100; ++i) {
    if (ca[i] != 2)
      abort();
  }
  return 0;
}

/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
/* { dg-final { cleanup-tree-dump "vect" } } */