view gcc/testsuite/gcc.dg/vect/vect-iv-11.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* { 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" } } */