Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / pr103079.c
blob7b1075447256488cff608b9fe40a4d0c26ca9a8d
1 /* { dg-do compile } */
2 /* { dg-options "-Os -fdump-tree-vrp2 -fno-tree-ch" } */
4 int a, b = -2;
5 int main() {
6 int d = 0;
7 int t;
8 if (b)
9 goto t1;
10 if (t) {
11 t1:
12 if (!a)
13 d = b;
14 while (d > -1)
17 return 0;
19 /* { dg-final { scan-tree-dump "PHI" "vrp2" } } */