xref: /llvm-project/polly/lib/External/isl/test_inputs/codegen/disjuncts.c (revision 52a25237d894fd5736a90f11df2c5c9391d13fd5)
1*52a25237STobias Grosser for (int c0 = 0; c0 <= n; c0 += 1)
2*52a25237STobias Grosser   for (int c1 = 0; c1 <= n; c1 += 1)
3*52a25237STobias Grosser     if (c1 == n || c0 == n || c1 == 0 || c0 == 0) {
4*52a25237STobias Grosser       for (int c3 = 0; c3 <= n; c3 += 1)
5*52a25237STobias Grosser         for (int c4 = 0; c4 <= n; c4 += 1)
6*52a25237STobias Grosser           a(c0, c1, c3, c4);
7*52a25237STobias Grosser       for (int c3 = 0; c3 <= n; c3 += 1)
8*52a25237STobias Grosser         for (int c4 = 0; c4 <= n; c4 += 1)
9*52a25237STobias Grosser           b(c0, c1, c3, c4);
10*52a25237STobias Grosser     }
11