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
pet_array: explicitly keep track of whether array is innermost
[pet.git]
/
tests
/
struct14.c
blob
77bd053ca30c88e914d7aad5935c47b3be226ee5
1
typedef
struct
scomplex
{
2
float
re
;
3
float
im
;
4
}
scomplex
;
5
6
struct
pair
{
7
scomplex c
[
2
];
8
};
9
10
void
foo
()
11
{
12
struct
pair p
;
13
14
#pragma scop
15
p
.
c
[
0
].
re
=
p
.
c
[
1
].
im
;
16
#pragma endscop
17
}