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_ast_build_ast_from_schedule: sort lower and upper bounds of for loops
[isl.git]
/
test_inputs
/
codegen
/
omega
/
m2-1.c
blob
09255e0c510a70a7a5b3d371e167a3fad905b7cf
1
{
2
for
(
int
c0
=
2
;
c0
<=
4
;
c0
+=
1
)
3
for
(
int
c1
=
2
;
c1
<=
9
;
c1
+=
1
)
4
s0
(
c0
,
c1
);
5
for
(
int
c0
=
5
;
c0
<=
9
;
c0
+=
1
) {
6
s1
(
c0
,
1
);
7
for
(
int
c1
=
2
;
c1
<=
9
;
c1
+=
1
) {
8
s1
(
c0
,
c1
);
9
s0
(
c0
,
c1
);
10
}
11
}
12
}