Skip several analyzer socket tests on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / c-c++-common / analyzer / malloc-paths-6.c
blob1df6964544e275be5c995244bafd34d72465b883
1 #include <stdlib.h>
3 void test (void *ptr)
5 void *q;
6 q = ptr;
7 free (ptr);
8 free (q); /* { dg-warning "double-'free' of 'q'" } */
9 /* The above case requires us to handle equivalence classes in
10 state transitions. */