Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr82388.c
blob: 51e30f88269c7d373d24c027914f92d918fdf05a [
file
] [
log
] [
blame
]
/* PR tree-optimization/82388 */
struct
A
{
int
b
;
int
c
;
int
d
;
}
e
;
struct
A
foo
(
void
)
{
struct
A h
[
30
]
=
{{
0
,
0
,
0
}};
return
h
[
29
];
}
int
main
()
{
e
=
foo
();
return
e
.
b
;
}