Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr52074.c
blob: 92a2096f055670cb8d27a79b53a755265114f649 [
file
] [
log
] [
blame
]
/* PR middle-end/52074 */
struct
S
{
const
char
*
d
,
*
e
;
}
__attribute__
((
packed
));
void
foo
(
const
char
**
p
,
struct
S
*
q
)
{
*
p
=
"abcdef"
;
q
->
d
=
"ghijk"
;
}