Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr45728.c
blob: a6ee10b8cd18f99aeb96d68bda22408710f3d362 [
file
] [
log
] [
blame
]
/* PR rtl-optimization/45728 */
union
U
{
int
*
m
;
double
d
;
};
int
i
;
union
U u
;
int
foo
(
void
)
{
union
U v
=
{
&
i
};
return
u
.
d
==
v
.
d
;
}