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
m4/ax_detect_clang.m4:fix description of SETLANGDEFAULTS_TAKES_5_ARGUMENTS
[pet.git]
/
tests
/
inline8.c
blob
10c8fa6068c9ab4ad96a69f23910a01c54e8e658
1
struct
s
{
2
int
a
[
30
][
40
];
3
int
b
[
50
];
4
};
5
6
void
g
(
struct
s
*
u
);
7
8
inline
void
h
(
struct
s t
[
20
])
9
{
10
for
(
int
i
=
0
;
i
<
20
; ++
i
)
11
g
(&
t
[
i
]);
12
}
13
14
void
f
()
15
{
16
struct
s s
[
10
][
20
];
17
18
#pragma scop
19
for
(
int
i
=
0
;
i
<
10
; ++
i
)
20
h
(
s
[
i
]);
21
#pragma endscop
22
}