OSDN Git Service

2008-08-09 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / warn / multiple-overflow-warn-3.C
1 /* PR 30465 : Test for duplicated warnings in a conversion.  */
2 /* { dg-do compile } */
3 /* { dg-options "-Woverflow" } */
4
5 short int
6 g (void)
7 {
8   short int wc = ((short int)1 << 31) - 1; /* { dg-bogus "overflow .* overflow" } */
9   /* { dg-warning "overflow" "" { target *-*-* } 8 } */
10   return wc;
11 }
12