testsuite: Skip analyzer tests on AIX.
[official-gcc.git] / gcc / testsuite / c-c++-common / analyzer / paths-5.c
blob21aa23067c1a2ac259beccfa8e209324772dc1d0
1 #include "analyzer-decls.h"
3 void test (int *p, int n)
5 int i;
6 __analyzer_dump_exploded_nodes (0); /* { dg-warning "1 processed enode" } */
7 for (i = 0; i < n; i++)
9 p[i] = i; /* { dg-bogus "uninitialized" } */
10 __analyzer_dump_exploded_nodes (0); /* { dg-warning "2 processed enodes" } */