aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/analyzer/uninit-alloca.c
blob: 5dd3f8522d2df7f1d1ac0f5373d94bdb523d8895 (plain)
1
2
3
4
5
6
7
/* { dg-require-effective-target alloca } */

int test_1 (void)
{
  int *p = __builtin_alloca (sizeof (int)); /* { dg-message "region created on stack here" } */
  return *p; /* { dg-warning "use of uninitialized value '\\*p'" } */
}