Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
pr61090.c
blob: fff289572ac5af24e0a454b1e2a6bed3ba2f5d3c [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-O" } */
struct
i
{
int
c
;
};
static
int
p
(
struct
i a
)
{
return
0
;
}
void
h
(
void
)
{
struct
i z
[]
=
{{
0
}};
int
e
[]
=
{};
int
x
;
e
[
0
]
=
p
(
z
[
x
])
+
z
[
x
].
c
;
}