aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr79972.c
blob: 4d3064fb5d6c6d304388a16bcb0a8b35d3804927 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* PR tree-optimization/79972 */
/* { dg-do compile } */
/* { dg-require-effective-target alloca } */
/* { dg-options "-Walloca -Wvla-larger-than=10000" } */

int
f (int dim, int *b, int *c)
{
  /* -Wvla-larger-than is only issued with optimization (see PR 100510).  */
  int newcentroid[3][dim];
  int *a = newcentroid[2];
  int i, dist = 0;
  __builtin_memcpy (newcentroid, c, sizeof (newcentroid));
  for (i = 0; i < dim; i++)
    dist += (a[i] - b[i]) * (a[i] - b[i]);
  return dist;
}