repo.or.cz
/
ppn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
update barvinok to version 0.41.7
[ppn.git]
/
tests
/
inputs
/
multi_reuse.c
blob
72af528b7d2bec955dc7643d5fdd69d868dc1358
1
int
t
(
void
);
2
void
f
(
int
);
3
4
void
foo
()
5
{
6
int
a
[
1
];
7
8
a
[
0
] =
0
;
9
for
(
int
i
=
0
;
i
<
10
; ++
i
) {
10
if
(
t
())
11
a
[
0
] =
i
;
12
f
(
a
[
0
]);
13
}
14
}