aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/Wtautological-compare-7.c
blob: 1dab5877f3b9a7e25bc7d7f1004a10d69f680de3 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* PR c/82437 */
/* { dg-do compile { target int32 } } */
/* { dg-options "-Wtautological-compare" } */

int
foo (unsigned long long int x)
{
  if ((x | 0x190000000ULL) != -1879048192)	/* { dg-bogus "bitwise comparison always evaluates to" } */
    return 0;
  return 1;
}