middle-end: Fix stalled swapped condition code value [PR115836]
[official-gcc.git] / gcc / testsuite / c-c++-common / analyzer / malloc-ipa-12.c
blob3813c9ae45ea8f44dbbe79b9fdebd46dbf470768
1 #include <stdlib.h>
3 void recursive_free (void *ptr)
5 free (ptr); /* { dg-warning "double-'free' of 'ptr'" } */
6 recursive_free (ptr); /* { dg-warning "infinite recursion" } */