aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/ubsan/c99-shift-2.c
blob: c6662dc43bce000d5bdf06f3e9752a9f28f97645 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do run } */
/* { dg-options "-fsanitize=shift -w -std=c99" } */

int
main (void)
{
  int a = 1;
  a <<= 31;
}
/* { dg-output "left shift of 1 by 31 places cannot be represented in type 'int'" } */