OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [vect/] [vect-iv-10.c] - Blame information for rev 298

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 298 jeremybenn
/* { dg-require-effective-target vect_int } */
2
 
3
#include <stdarg.h>
4
#include "tree-vect.h"
5
 
6
#define N 16
7
 
8
__attribute__ ((noinline))
9
int main1 ()
10
{
11
  int i,j;
12
  int ia[N];
13
 
14
  /* Induction.  */
15
  for (j=0,i=N;  j<N,i>0;  i--,j++) {
16
    ia[j] = i;
17
  }
18
 
19
  /* check results:  */
20
  for (j=0,i=N;  j<N,i>0;  i--,j++) {
21
      if (ia[j] != i)
22
        abort ();
23
    }
24
 
25
  return 0;
26
}
27
 
28
int main (void)
29
{
30
  check_vect();
31
 
32
  return main1 ();
33
}
34
 
35
/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
36
/* { dg-final { cleanup-tree-dump "vect" } } */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.