Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / pr107505.c
blob01270eac91ccfd7dec9303d8da21c0a87798833d
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fno-guess-branch-probability" } */
4 int n;
6 void
7 bar (void);
9 __attribute__ ((noinline, returns_twice)) int
10 zero (void)
12 return 0;
15 void
16 foo (void)
18 int a = zero ();
20 for (n = 0; n < 2; ++n)
24 if (a)
25 bar ();