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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [graphite/] [interchange-10.c] - Blame information for rev 749

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 689 jeremybenn
/* { dg-require-effective-target size32plus } */
2
 
3
#define DEBUG 0
4
#if DEBUG
5
#include <stdio.h>
6
#endif
7
 
8
double u[1782225];
9
 
10
static void __attribute__((noinline))
11
foo (int N, int *res)
12
{
13
  int i, j;
14
  double sum = 0.0;
15
 
16
  for (i = 0; i < N; i++)
17
    for (j = 0; j < N; j++)
18
      sum = sum + u[i + 1335 * j];
19
 
20
  for (i = 0; i < N; i++)
21
    for (j = 0; j < N; j++)
22
      sum = sum + u[i + 1335 * j];
23
 
24
  *res = sum + N + u[1336 * 2] + u[1336];
25
}
26
 
27
extern void abort ();
28
 
29
int
30
main (void)
31
{
32
  int i, res;
33
 
34
  for (i = 0; i < 1782225; i++)
35
    u[i] = 2;
36
 
37
  foo (1335, &res);
38
 
39
#if DEBUG
40
  fprintf (stderr, "res = %d \n", res);
41
#endif
42
 
43
  if (res != 7130239)
44
    abort ();
45
 
46
  return 0;
47
}
48
 
49
/* { dg-final { scan-tree-dump-times "will be interchanged" 2 "graphite" } } */
50
/* { dg-final { cleanup-tree-dump "graphite" } } */

powered by: WebSVN 2.1.0

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