Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr85945.c
blob: 93b2023f25cb132ad4954c48cd375db89f7524cb [
file
] [
log
] [
blame
]
/* PR target/85945 */
typedef
float
V __attribute__
((
vector_size
(
16
)));
union
U
{
V v
;
float
f
[
4
];
};
int
f
;
float
g
[
4
];
void
foo
(
void
)
{
V d
;
union
U i
;
i
.
v
=
d
;
for
(
f
=
0
;
f
<
4
;
f
++)
g
[
f
]
=
i
.
f
[
f
];
}