Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr56448.c
blob: f10da6ce7526d4aca84541af49f642260aa38fa3 [
file
] [
log
] [
blame
]
/* PR tree-optimization/56448 */
volatile
int
a
[
1
];
int
b
;
void
foo
()
{
for
(;;)
{
int
*
c
[
3
][
6
]
=
{
0
,
0
,
0
,
&
b
,
0
,
0
,
0
,
0
,
&
b
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
&
b
,
(
int
*)
&
a
[
0
]
};
b
=
*
c
[
2
][
5
];
}
}