Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / pr109327.c
blob827b26f148ebb6f6d52b58a1c1a43dd8c35ce1a3
1 /* { dg-do compile } */
2 /* { dg-options "-O -fno-tree-ccp" } */
4 int a;
5 void b(int c) {}
6 int main()
8 int d = 0, *e = &a;
9 if (d) {
10 int *f = e;
11 while (a)
12 b(e != f);
14 return 0;