Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr90139.c
blob: f3d99f04c866c5d2a730352ad0add579c20e9e1e [
file
] [
log
] [
blame
]
/* PR middle-end/90139 */
typedef
float
__attribute__
((
vector_size
(
sizeof
(
float
))))
V
;
void
bar
(
int
,
V
*);
int
l
;
void
foo
(
void
)
{
V n
,
b
,
o
;
while
(
1
)
switch
(
l
)
{
case
0
:
o
=
n
;
n
=
b
;
b
=
o
;
bar
(
1
,
&
o
);
}
}