* ubsan.c (ubsan_expand_null_ifn): Use _v1 suffixed type mismatch
[official-gcc.git] / gcc / testsuite / c-c++-common / Wtautological-compare-7.c
blob1dab5877f3b9a7e25bc7d7f1004a10d69f680de3
1 /* PR c/82437 */
2 /* { dg-do compile { target int32 } } */
3 /* { dg-options "-Wtautological-compare" } */
5 int
6 foo (unsigned long long int x)
8 if ((x | 0x190000000ULL) != -1879048192) /* { dg-bogus "bitwise comparison always evaluates to" } */
9 return 0;
10 return 1;