File: shift_unroll.c

package info (click to toggle)
cloog 0.18.4-1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 19,696 kB
  • sloc: ansic: 141,371; sh: 11,621; makefile: 1,040; fortran: 125; python: 72; perl: 9
file content (14 lines) | stat: -rw-r--r-- 211 bytes parent folder | download | duplicates (44)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
for (int c0 = 0; c0 <= 9; c0 += 1) {
  A(c0, 0);
  A(c0, 1);
  A(c0, 2);
  A(c0, 3);
  A(c0, 4);
  A(c0, 5);
  A(c0, 6);
  A(c0, 7);
  A(c0, 8);
  A(c0, 9);
  for (int c2 = 0; c2 <= 9; c2 += 1)
    B(c0, c2);
}