PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / Wstrict-overflow-21.c
blob82a61d966f3c81dd7947103bd9db9a8177c582d1
1 /* PR 32102: -Wall stomps on -Wstrict-overflow */
2 /* { dg-do compile } */
3 /* { dg-options "-fstrict-overflow -O2 -Wstrict-overflow=2 -Wall" } */
4 int
5 foo ()
7 int i, bits;
8 for (i = 1, bits = 1; i > 0; i += i) /* { dg-warning "assuming signed overflow does not occur" "correct warning" { xfail *-*-* } } */
9 ++bits;
10 return bits;