1/* Generated from ../../../git/cloog/test/block3.cloog by CLooG 0.16.2-4-gba4e834 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() { hash(1); }
11#define S2() { hash(2); }
12#define S3(i) { hash(3); hash(i); }
13
14void test()
15{
16  /* Scattering iterators. */
17  int c1;
18  /* Original iterators. */
19  int i;
20  S1();
21  S3(0);
22  S2();
23  S3(1);
24}
25