Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
gcc.dg
/
pr94526.c
blob: 9864c4c311392b52200f66bf888e963e685d82ec [
file
] [
log
] [
blame
]
/* PR middle-end/94526 */
/* { dg-do compile } */
/* { dg-options "-O2 -g" } */
struct
S
{
int
val
[
8
*
sizeof
(
int
)];
};
void
foo
(
struct
S
*
x
)
{
struct
S
*
a
=
x
;
}
void
baz
(
struct
S
);
void
bar
(
void
)
{
struct
S b
;
foo
(&
b
);
baz
(
b
);
}