repo.or.cz
/
cloog
/
uuh.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add option OMP_PARALLEL_FORMAT_BARE to enable bare OMP FOR blocks in OpenMP
[cloog/uuh.git]
/
test
/
mode.c
blob
c527eedffe55d970ca2fe0bd5703f9299de24e9b
1
/* Generated from /home/skimo/git/cloog/test/mode.cloog by CLooG 0.14.0-284-ga90f184 gmp bits in 0.00s. */
2
if
(
M
>=
0
) {
3
if
(
N
>=
0
) {
4
for
(
i
=
0
;
i
<=
M
;
i
++) {
5
for
(
j
=
0
;
j
<=
min
(
N
,
i
);
j
++) {
6
S1
(
i
,
j
);
7
S2
(
i
,
j
);
8
}
9
for
(
j
=
N
+
1
;
j
<=
i
;
j
++) {
10
S1
(
i
,
j
);
11
}
12
for
(
j
=
i
+
1
;
j
<=
N
;
j
++) {
13
S2
(
i
,
j
);
14
}
15
}
16
}
17
if
(
N
<= -
1
) {
18
for
(
i
=
0
;
i
<=
M
;
i
++) {
19
for
(
j
=
0
;
j
<=
i
;
j
++) {
20
S1
(
i
,
j
);
21
}
22
}
23
}
24
}