summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/Walloca-13.c
blob: 12e9f6c9281e8b8cd72c0140c909094f3dd93abd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do compile } */
/* { dg-require-effective-target alloca } */
/* { dg-options "-Walloca-larger-than=100 -O2" } */

void f (void*);

void g (int *p, int *q)
{
  __SIZE_TYPE__ n = (__SIZE_TYPE__)(p - q);
  if (n < 100)
    f (__builtin_alloca (n)); // { dg-bogus "may be too large due to conversion" "" { xfail { *-*-* } } }
}