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
filter.c: pet_filter_insert_pma: drop unused variable
[pet.git]
/
tests
/
struct2.c
blob
2af9f93ebcc6229cfa116a8a796ce2fda3a58777
1
struct
s
{
2
int
a
;
3
};
4
5
void
foo
()
6
{
7
struct
s s
[
10
][
20
];
8
9
#pragma scop
10
for
(
int
i
=
0
;
i
<
10
; ++
i
)
11
for
(
int
j
=
0
;
j
<
20
; ++
j
)
12
s
[
i
][
j
].
a
=
5
;
13
#pragma endscop
14
}