repo.or.cz
/
isl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
isl_test: avoid use of band forests
[isl.git]
/
test_inputs
/
codegen
/
cloog
/
test.c
blob
84c84931e35f6670b3c0a830e6122bbed5a86436
1
{
2
for
(
int
c0
=
1
;
c0
<=
2
;
c0
+=
1
)
3
for
(
int
c1
=
1
;
c1
<=
M
;
c1
+=
1
)
4
S1
(
c0
,
c1
);
5
for
(
int
c0
=
3
;
c0
<=
N
;
c0
+=
1
) {
6
for
(
int
c1
=
1
;
c1
<=
min
(
M
,
c0
-
1
);
c1
+=
1
)
7
S1
(
c0
,
c1
);
8
if
(
M
>=
c0
) {
9
S1
(
c0
,
c0
);
10
S2
(
c0
,
c0
);
11
}
12
for
(
int
c1
=
c0
+
1
;
c1
<=
M
;
c1
+=
1
)
13
S1
(
c0
,
c1
);
14
if
(
c0
>=
M
+
1
)
15
S2
(
c0
,
c0
);
16
}
17
}