2018-05-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / pr8715.c
blobe45e77c09f4cb65b50a04a06c862bb2b17f5a115
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 ~unsigned is always non-zero" } */
12 return 0;