aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/multiple-overflow-warn-3.C
blob: afb4e517f287d33e793ad771c77857383026399d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* PR 30465 : Test for duplicated warnings in a conversion.  */
/* { dg-do compile } */
/* { dg-options "-Woverflow" } */

short int
g (void)
{
  short int wc = ((short int)1 << 31) - 1; /* { dg-bogus "overflow .* overflow" } */
  /* { dg-warning "overflow" "" { target *-*-* } 8 } */
  return wc;
}