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
/
square+triangle-1-1-2-3.c
blob
c30b4e2b8e93585102705e24427aa05cac9c11c4
1
/* Generated from /home/skimo/git/cloog/test/square+triangle-1-1-2-3.cloog by CLooG 0.14.0-284-ga90f184 gmp bits in 0.00s. */
2
for
(
j
=
1
;
j
<=
M
;
j
++) {
3
S1
(
1
,
j
);
4
}
5
for
(
i
=
2
;
i
<=
M
;
i
++) {
6
S1
(
i
,
1
);
7
for
(
j
=
2
;
j
<=
i
;
j
++) {
8
S1
(
i
,
j
);
9
S2
(
i
,
j
);
10
}
11
for
(
j
=
i
+
1
;
j
<=
M
;
j
++) {
12
S1
(
i
,
j
);
13
}
14
}