repo.or.cz
/
pet.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PetScan::extract_access_expr: construct access expression directly from pet_expr
[pet.git]
/
tests
/
ternary.c
blob
9b3be6d0fb55a35d9d2f671613bb891d1647c63c
1
int
f
(
void
);
2
3
void
foo
()
4
{
5
int
i
,
j
,
a
[
100
];
6
7
#pragma scop
8
for
(
i
=
0
;
i
<
100
; ++
i
) {
9
j
=
f
();
10
a
[
i
] =
j
?
40
:
90
;
11
}
12
#pragma endscop
13
}