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
export pet_expr_extract_affine
[pet.git]
/
tests
/
struct4.c
blob
2a68673916b50e84e624537cde10a9177729dd3b
1
struct
s
{
2
struct
{
3
int
a
[
10
];
4
}
f
[
10
];
5
};
6
7
void
foo
()
8
{
9
struct
s s
;
10
11
#pragma scop
12
for
(
int
i
=
0
;
i
<
10
; ++
i
)
13
for
(
int
j
=
0
;
j
<
10
; ++
j
)
14
s
.
f
[
i
].
a
[
j
] =
i
*
j
;
15
#pragma endscop
16
}