Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr10153-2.c
blob: 1af4c8e2a36d0d2ad3527ed378d51fcb24d4f036 [
file
] [
log
] [
blame
]
typedef
int
V __attribute__
((
vector_size
(
2
*
sizeof
(
int
))));
V
foo
(
int
t
)
{
if
(
t
<
10
)
return
(
V
){
1
,
1
};
V v
=
{
};
return
v
-
foo
(
t
-
1
);
}