aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/c-c++-common/pr48418.c
blob: 95ff855b89c83ed5af1cfca5d583d1b398989770 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* PR c/48418 */
/* { dg-do compile } */
/* { dg-options "-Wall -O2" } */

int
foo (int x)
{
  const int a = sizeof (int) * __CHAR_BIT__;
  const int b = -7;
  int c = 0;
  c += x << a;				   /* { dg-warning "left shift count >= width of type" } */
  c += x << b;				   /* { dg-warning "left shift count is negative" } */
  c += x << (sizeof (int) * __CHAR_BIT__); /* { dg-warning "left shift count >= width of type" } */
  c += x << -7;				   /* { dg-warning "left shift count is negative" } */
  c += x >> a;				   /* { dg-warning "right shift count >= width of type" } */
  c += x >> b;				   /* { dg-warning "right shift count is negative" } */
  c += x >> (sizeof (int) * __CHAR_BIT__); /* { dg-warning "right shift count >= width of type" } */
  c += x >> -7;				   /* { dg-warning "right shift count is negative" } */
  return c;
}