Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr69715.c
blob: cecc82cdf58418574b871e4392cba18f04fba4c3 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
struct
__attribute__
((
may_alias
))
S
{
long
long
low
;
int
high
;
};
struct
S foo
(
void
);
long
double
bar
(
void
)
{
long
double
a
;
*(
struct
S
*)&
a
=
foo
();
return
a
;
}