OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [vect/] [no-scevccp-noreassoc-outer-3.c] - Blame information for rev 689

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 689 jeremybenn
/* { dg-require-effective-target vect_int } */
2
 
3
#include <stdarg.h>
4
#include "tree-vect.h"
5
 
6
#define N 40
7
 
8
int a[N];
9
 
10
__attribute__ ((noinline)) int
11
foo (){
12
  int i,j;
13
  int sum,x;
14
 
15
  for (i = 0; i < N; i++) {
16
    sum = 0;
17
    for (j = 0; j < N; j++) {
18
      sum += (i + j);
19
    }
20
    a[i] = sum;
21
  }
22
}
23
 
24
int main (void)
25
{
26
  int i,j;
27
  int sum;
28
 
29
  check_vect ();
30
 
31
  foo ();
32
 
33
    /* check results:  */
34
  for (i=0; i<N; i++)
35
    {
36
      sum = 0;
37
      for (j = 0; j < N; j++){
38
        sum += (j + i);
39
      }
40
      if (a[i] != sum)
41
        abort();
42
    }
43
 
44
  return 0;
45
}
46
 
47
/* { dg-final { scan-tree-dump-times "OUTER LOOP VECTORIZED." 1 "vect" } } */
48
/* { 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.