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

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

int __attribute__((noinline,noclone))
main1 (int len)
{  
  int s = 0;
  int i = len;

  /* vectorization of induction with reduction.  */
  for ( ; i > 1; i -=2)
    s += i;

  return s;
}

int main (void)
{ 
  int s;
  check_vect ();
  
  s = main1 (26);
  if (s != 182)
    abort ();

  return 0;
} 

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