testsuite: Skip analyzer tests on AIX.
[official-gcc.git] / gcc / testsuite / c-c++-common / analyzer / pr105087-2.c
blob7cd6591b820503b2f5c2ed4d35cbb8bfdd72e59c
1 #include "analyzer-decls.h"
3 extern void inner_alloc (void **);
5 void * __attribute__((noinline))
6 outer_alloc (void)
8 void *result;
9 inner_alloc (&result);
10 return result;
13 void test_1 (void)
15 void *p, *q;
17 p = outer_alloc ();
18 q = outer_alloc ();
19 __analyzer_eval (p == q); /* { dg-warning "UNKNOWN" } */