1/* Generated from ../../../git/cloog/test/walters3.cloog by CLooG 0.14.0-338-g99c7504 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,a,b) { hash(1); hash(j); hash(a); hash(b); }
11#define S2(j,a,b) { hash(2); hash(j); hash(a); hash(b); }
12
13void test()
14{
15  /* Original iterators. */
16  int j, a, b;
17  for (j=2;j<=8;j++) {
18    if (j%2 == 0) {
19      S1(j,j/2,j/2);
20      S2(j,j/2,j/2);
21    }
22  }
23  S2(10,5,5);
24}
25