Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / pr96695-2.c
blob6d347c3b26451a33502d499bc5a26410680435f6
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized" } */
4 #include <limits.h>
6 _Bool and1(unsigned *x, unsigned *y)
8 /* x > y && x != 0 --> x > y */
9 return x > y && x != 0;
12 _Bool and2(unsigned *x, unsigned *y)
14 /* x < y && x != -1 --> x < y */
15 return x < y && x != (unsigned*)-1;
18 /* { dg-final { scan-tree-dump-not " != " "optimized" } } */