OSDN Git Service

* gcc.dg/torture/builtin-modf-1.c: Use -fno-finite-math-only on
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / overflow-2.c
1 /* { dg-do compile } */
2 /* { dg-options "-std=c99 -pedantic-errors" } */
3
4 /* PR c/24599 */
5
6 int
7 main (void)
8 {
9   if ((_Bool)(__INT_MAX__ + 1)) /* { dg-warning "overflow in expression" } */
10     return 1;
11   else
12     return 0;
13 }