aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/loop-interchange-13.c
blob: 38b71e005998d80efd8ee078c8f7a7934d13007d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/* { dg-do run } */
/* { dg-options "-O2 -floop-interchange -fdump-tree-linterchange-details" } */

/* Copied from graphite/interchange-4.c */

#define DEBUG 0
#if DEBUG
#include <stdio.h>
#endif

unsigned u[1024];

static void __attribute__((noinline,noclone,noipa))
foo (int N, int M, unsigned *res)
{
  int i, j;
  unsigned sum = 0;
  if (N > 0)
    for (i = 0; i < M; i++)
      for (j = 0; j < N; j++)
	sum = u[i + 3 * j] - sum;

  *res = sum;
}

extern void abort ();

int
main (void)
{
  int i, j;
  unsigned res;

  u[0] = 1;
  u[1] = 2;
  u[2] = 4;
  u[3] = 5;
  u[4] = 7;
  u[5] = 8;

  foo (2, 3, &res);

#if DEBUG
  fprintf (stderr, "res = %d \n", res);
#endif

  if (res != 13)
    abort ();

  return 0;
}

/* { dg-final { scan-tree-dump-not "is interchanged" "linterchange"} } */