PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / c-c++-common / Wtautological-compare-4.c
blob207c401a4ce05c28983b93a0779dcc2b53d773ca
1 /* PR c++/67863 */
2 /* { dg-do compile } */
3 /* { dg-options "-Wtautological-compare" } */
5 extern int e;
6 #define A (e ? 4 : 8)
7 #define B (e ? 4 : 8)
9 int
10 fn (void)
12 if (A <= B)
13 return 1;
14 return 0;