Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / g++.dg / warn / multiple-overflow-warn-3.C
blobafb4e517f287d33e793ad771c77857383026399d
1 /* PR 30465 : Test for duplicated warnings in a conversion.  */
2 /* { dg-do compile } */
3 /* { dg-options "-Woverflow" } */
5 short int
6 g (void)
8   short int wc = ((short int)1 << 31) - 1; /* { dg-bogus "overflow .* overflow" } */
9   /* { dg-warning "overflow" "" { target *-*-* } 8 } */
10   return wc;