summaryrefslogtreecommitdiff
path: root/test-chill/test-cases/chill/test_shift.stdout
blob: 2b96895ded819cc1c5cc922ea53473ea36e08e47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
for(t2 = 0; t2 <= an+3; t2++) {
  for(t4 = 0; t4 <= bm-1; t4++) {
    if (an >= t2+1) {
      s0(t2,t4,0);
      if (t2 >= 4) {
        s1(t2-4,t4,0);
      }
      if (t2 >= 4) {
        for(t6 = 1; t6 <= ambn-1; t6++) {
          s1(t2-4,t4,t6);
        }
      }
    }
    else {
      if (t2 >= 4) {
        for(t6 = 0; t6 <= ambn-1; t6++) {
          s1(t2-4,t4,t6);
        }
      }
    }
  }
}