]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/overflow-2.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / overflow-2.c
CommitLineData
d8e1f97b
PB
1/* { dg-do compile } */
2/* { dg-options "-std=c99 -pedantic-errors" } */
3
4/* PR c/24599 */
5
6int
7main (void)
8{
9 if ((_Bool)(__INT_MAX__ + 1)) /* { dg-warning "overflow in expression" } */
10 return 1;
11 else
12 return 0;
13}