aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/analyzer/uninit-alloca.c
blob: 82ed59929f0d1ab1579ea785ea65de5eb27e4338 (plain)
1
2
3
4
5
int test_1 (void)
{
  int *p = (int *) __builtin_alloca (sizeof (int)); /* { dg-message "region created on stack here" } */
  return *p; /* { dg-warning "use of uninitialized value '\\*p'" } */
}