Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20191108-1.c
blob: 7929751bb06065d4d89a98617aea74ed5a11f83b [
file
] [
log
] [
blame
]
/* PR target/92095 */
/* Testcase by Sergei Trofimovich <slyfox@inbox.ru> */
typedef
union
{
double
a
;
int
b
[
2
];
}
c
;
double
d
(
int
e
)
{
c f
;
(&
f
)->
b
[
0
]
=
15728640
;
return
e
?
-(&
f
)->
a
:
(&
f
)->
a
;
}