repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang-repl] [codegen] Reduce the state in TBAA. NFC for static compilation. (#98138)
[llvm-project.git]
/
polly
/
lib
/
External
/
isl
/
test_inputs
/
codegen
/
omega
/
m10-1.c
blob
227545710dd0f1d2b030a2571dae4d05298bdeab
1
for
(
int
c0
=
1
;
c0
<=
18
;
c0
+=
1
) {
2
if
(
c0
>=
2
&&
c0
<=
9
) {
3
for
(
int
c1
=
1
;
c1
<=
9
;
c1
+=
1
) {
4
if
(
c0
%
2
==
0
)
5
s0
(
c1
,
c0
/
2
);
6
s1
(
c1
,
c0
);
7
}
8
}
else if
(
c0
==
1
) {
9
for
(
int
c1
=
1
;
c1
<=
9
;
c1
+=
1
)
10
s1
(
c1
,
1
);
11
}
else if
(
c0
%
2
==
0
) {
12
for
(
int
c1
=
1
;
c1
<=
9
;
c1
+=
1
)
13
s0
(
c1
,
c0
/
2
);
14
}
15
}