middle-end: Fix stalled swapped condition code value [PR115836]
[official-gcc.git] / gcc / testsuite / c-c++-common / analyzer / alloca-leak.c
blob073f97e1ade32f03ad7ede23b72c4ce208ddc2c7
1 /* { dg-require-effective-target alloca } */
3 void *test (void)
5 void *ptr = __builtin_alloca (64);
6 return ptr;
8 /* TODO: warn about escaping alloca. */