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

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [gcc.dg/] [vect/] [no-scevccp-outer-15.c] - Blame information for rev 384

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 40
7
 
8
int a[N];
9
 
10
__attribute__ ((noinline)) int
11
foo (int x){
12
  int i,j;
13
  int sum;
14
 
15
  for (i = 0; i < N; i++) {
16
    sum = 0;
17
    for (j = 0; j < N; j++) {
18
      sum += j;
19
    }
20
    a[i] = sum + i + x;
21
  }
22
}
23
 
24
int main (void)
25
{
26
  int i,j;
27
  int sum;
28
  int aa[N];
29
 
30
  check_vect ();
31
 
32
  foo (3);
33
 
34
    /* check results:  */
35
  for (i=0; i<N; i++)
36
    {
37
      sum = 0;
38
      for (j = 0; j < N; j++)
39
        sum += j;
40
      if (a[i] != sum + i + 3)
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.