Skip several analyzer socket tests on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / c-c++-common / analyzer / pr105087-1.c
blobc4acf4293597a4de3c6a927d6ab37bb66308cb18
1 #include "analyzer-decls.h"
3 extern void *inner_alloc (void);
5 void * __attribute__((noinline))
6 outer_alloc (void)
8 return inner_alloc ();
11 void test_1 (void)
13 void *p, *q;
15 p = outer_alloc ();
16 q = outer_alloc ();
17 __analyzer_eval (p == q); /* { dg-warning "UNKNOWN" } */