PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / no-strict-overflow-6.c
blob0a8811966325d941618d30ce2f1352533656b1b9
1 /* { dg-do compile } */
2 /* { dg-options "-fno-strict-overflow -O2 -fdump-tree-optimized" } */
4 /* Source: Ian Lance Taylor. */
6 /* VRP test. We can not simplify the conditional when not using
7 strict overflow semantics. We don't test this with
8 -fstrict-overflow because it turns into an infinite loop. That is
9 OK but it would also be OK to not do that. */
11 int
12 foo ()
14 int i, bits;
15 for (i = 1, bits = 1; i > 0; i += i)
16 ++bits;
17 return bits - sizeof(int) * __CHAR_BIT__;
20 /* { dg-final { scan-tree-dump "return 0" "optimized" } } */