aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr10153-2.c
blob: 1af4c8e2a36d0d2ad3527ed378d51fcb24d4f036 (plain)
1
2
3
4
5
6
7
8
9
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);
}