Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr53748.c
blob: 9aad70dd73aa3a36154010941877a5c8ef1e75f0 [
file
] [
log
] [
blame
]
/* PR tree-optimization/53748 */
typedef
unsigned
int
V __attribute__
((
__vector_size__
(
sizeof
(
int
)
*
4
)));
void
foo
(
int
x
,
V
*
y
)
{
*
y
=
x
?
((
V
)
{
~
0U
,
~
0U
,
~
0U
,
~
0U
})
:
((
V
)
{
0
,
0
,
0
,
0
});
}