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

« back to all changes in this revision

Viewing changes to isl/test_inputs/codegen/omega/lu-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:
2
2
  for (int c1 = c0 - 1; c1 <= n; c1 += 64)
3
3
    for (int c2 = c0; c2 <= n; c2 += 1) {
4
4
      for (int c3 = c0; c3 <= min(min(c0 + 63, c1 + 62), c2 - 1); c3 += 1)
5
 
        for (int c4 = max(c3 + 1, c1); c4 <= min(c1 + 63, n); c4 += 1)
 
5
        for (int c4 = max(c1, c3 + 1); c4 <= min(n, c1 + 63); c4 += 1)
6
6
          s1(c3, c4, c2);
7
7
      if (c0 + 63 >= c2)
8
 
        for (int c4 = max(c2 + 1, c1); c4 <= min(n, c1 + 63); c4 += 1)
 
8
        for (int c4 = max(c1, c2 + 1); c4 <= min(n, c1 + 63); c4 += 1)
9
9
          s0(c2, c4);
10
10
    }