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);
}