1/* Generated from /home/skimo/git/cloog/test/walters2.cloog by CLooG 0.14.0-227-g08f253a gmp bits in 0.00s. */
2extern void hash(int);
3
4/* Useful macros. */
5#define floord(n,d) (((n)<0) ? -((-(n)+(d)-1)/(d)) : (n)/(d))
6#define ceild(n,d)  (((n)<0) ? -((-(n))/(d)) : ((n)+(d)-1)/(d))
7#define max(x,y)    ((x) > (y) ? (x) : (y))
8#define min(x,y)    ((x) < (y) ? (x) : (y))
9
10#define S1(j,i) { hash(1); hash(j); hash(i); }
11#define S2(j,i) { hash(2); hash(j); hash(i); }
12
13void test()
14{
15  /* Original iterators. */
16  int j, i;
17  for (i=0;i<=51;i++) {
18    S2(0,i);
19  }
20  for (j=1;j<=24;j++) {
21    S2(j,0);
22    for (i=1;i<=50;i++) {
23      S1(j,i);
24    }
25    S2(j,51);
26  }
27  for (i=0;i<=51;i++) {
28    if (i >= 0) {
29      S2(25,i);
30    }
31  }
32}
33