Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / pr106198.c
blob00d2758efa7d813e4d4f39f2baad3288b6aed78d
1 /* { dg-do compile } */
2 /* { dg-options "-O3" } */
4 int printf(const char *, ...);
5 long a;
6 int b;
7 volatile int c;
8 int main() {
9 long e = a;
10 int f = a;
12 if (b > 0) {
13 printf("0");
14 goto L;
16 if (f) {
17 printf("%ld", (long)b);
18 goto L;
20 e >= b && c;
21 return 0;