~ubuntu-branches/ubuntu/wily/cloog/wily-proposed

« back to all changes in this revision

Viewing changes to isl/test_inputs/codegen/omega/m10-1.c

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2015-04-24 15:07:57 UTC
  • mfrom: (3.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20150424150757-wumy8mdonvtgf29j
Tags: 0.18.3-1
* New upstream version.
* Update symbols file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
for (int c0 = 1; c0 <= 18; c0 += 1)
2
 
  if (c0 <= 9 && c0 >= 2) {
 
1
for (int c0 = 1; c0 <= 18; c0 += 1) {
 
2
  if (c0 >= 2 && c0 <= 9) {
3
3
    for (int c1 = 1; c1 <= 9; c1 += 1) {
4
4
      if (c0 % 2 == 0)
5
5
        s0(c1, c0 / 2);
11
11
  } else if (c0 % 2 == 0)
12
12
    for (int c1 = 1; c1 <= 9; c1 += 1)
13
13
      s0(c1, c0 / 2);
 
14
}