aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr100305.c
blob: 43d78bf6542805c4cb42b25e727e4e09a5a7119c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR target/100305 */

typedef double v2df __attribute__((vector_size(16)));

#define N 4096
void consume (void *);
v2df
foo (void)
{
  double x[N+2];
  consume (x);
  return (v2df) { x[N], x[N + 1] };
}