2018-05-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / graphite / isl-ast-gen-single-loop-1.c
blob6c141a1b232b0af769cfb88d1c75009f1640b8e0
1 int
2 foo ()
4 int i, res;
6 for (i = 0, res = 0; i < 50; i++)
7 res += i;
9 return res;
12 extern void abort ();
14 int
15 main (void)
17 int res = foo ();
19 if (res != 1225)
20 abort ();
22 return 0;