Rebase.
[official-gcc.git] / gcc / testsuite / gcc.dg / Wstrict-overflow-15.c
blobc9e275c0bd614dc6e95c0fb71e9ce6f13ee40b16
1 /* { dg-do compile } */
2 /* { dg-options "-fstrict-overflow -O2 -Wstrict-overflow=4" } */
4 /* Source: Ian Lance Taylor. */
6 int
7 foo (int j)
9 int i;
10 int sum = 0;
12 for (i = 1; i < j; i += i)
13 sum += __builtin_abs (i); /* { dg-warning "assuming signed overflow does not occur" "" { xfail *-*-* } } */
14 return sum;