repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
930526-1.c
blob
6b562044d645a1040224cf922723a37a13b5a8f3
1
/* { dg-options "-fgnu89-inline" } */
2
3
extern
void
exit
(
int
);
4
5
inline
void
6
f
(
int
x
)
7
{
8
int
*(
p
[
25
]);
9
int
m
[
25
*
7
];
10
int
i
;
11
12
for
(
i
=
0
;
i
<
25
;
i
++)
13
p
[
i
] =
m
+
x
*
i
;
14
15
p
[
1
][
0
] =
0
;
16
}
17
18
int
19
main
()
20
{
21
f
(
7
);
22
exit
(
0
);
23
}