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
move PetScan::extract_while before its first use
[pet.git]
/
tests
/
struct7.c
blob
994d2e44e29eb5313089dc4d607fe93bbb6d4798
1
struct
scomplex
{
2
float
re
;
3
float
im
;
4
};
5
6
struct
pair
{
7
struct
scomplex a
;
8
struct
scomplex b
;
9
};
10
11
void
foo
()
12
{
13
struct
pair p
;
14
15
#pragma scop
16
p
.
a
.
re
=
p
.
b
.
im
;
17
#pragma endscop
18
}