Fix broken MinGW build of gcc.c
[official-gcc.git] / gcc / testsuite / g++.dg / warn / multiple-overflow-warn-2.C
blob31e00ed993d8e282b003ed8ae529a07e5aa62561
1 /* PR c/19978 : Test for duplicated warnings (binary operators).  */
2 /* { dg-do compile } */
3 /* { dg-options "-Woverflow" } */
5 #include <limits.h>
7 int 
8 g1 (void)
10   return INT_MAX + 1 - INT_MAX; /* { dg-bogus "integer overflow in expression.*integer overflow in expression" } */
11   /* { dg-warning "integer overflow in expression" "" { target *-*-* } .-1 } */