diff options
Diffstat (limited to 'test-chill/test-cases/chill/test_shift.stdout')
-rw-r--r-- | test-chill/test-cases/chill/test_shift.stdout | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test-chill/test-cases/chill/test_shift.stdout b/test-chill/test-cases/chill/test_shift.stdout new file mode 100644 index 0000000..2b96895 --- /dev/null +++ b/test-chill/test-cases/chill/test_shift.stdout @@ -0,0 +1,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); + } + } + } + } +} + + |