aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr8715.c
blob: e45e77c09f4cb65b50a04a06c862bb2b17f5a115 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-do compile } */
/* { dg-options "-Wsign-compare -std=c99" } */

#include <stdbool.h>

int foo()
{
  unsigned char b = '1';

  bool x = ~b; /* { dg-warning "promoted ~unsigned is always non-zero" } */

  return 0;
}