Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / pr8715.c
blob2878a48a4d3df5d556c461e8753dbcb9bfed37cb
1 /* { dg-do compile } */
2 /* { dg-options "-Wsign-compare -std=c99" } */
4 #include <stdbool.h>
6 int foo()
8 unsigned char b = '1';
10 bool x = ~b; /* { dg-warning "promoted bitwise complement of an unsigned value is always nonzero" } */
12 return 0;