testsuite: Skip analyzer tests on AIX.
[official-gcc.git] / gcc / testsuite / c-c++-common / analyzer / pr97608.c
bloba2bc1301097c64965bb09c586efcdbdaa0742eb3
1 #include <stdlib.h>
3 void *f (void)
5 void *p = malloc (8);
6 if (p == NULL)
7 abort ();
8 return (void *) ((char *) p + 0);
11 void *g (void)
13 void *p = malloc (8);
14 if (p == NULL)
15 abort ();
16 return (void *) ((char *) p + 1);