Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr57321.c
blob: 79b3d4d17740b7a563dcda21e7c327f3a176cb07 [
file
] [
log
] [
blame
]
/* PR tree-optimization/57321 */
int
a
=
1
,
*
b
,
**
c
;
static
int
foo
(
int
*
p
)
{
if
(*
p
==
a
)
{
int
*
i
[
7
][
5
]
=
{
{
0
}
};
int
**
j
[
1
][
1
];
j
[
0
][
0
]
=
&
i
[
0
][
0
];
*
b
=
&
p
!=
c
;
}
return
0
;
}
int
main
()
{
int
i
=
0
;
foo
(&
i
);
return
0
;
}